PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins
/
comments-ratings
/
core
/
interfaces
<?php defined('ABSPATH') or die; /* This file is property of Pixel Grade Media. You may NOT copy, or redistribute * it. Please see the license that came with your copy for more information. */ /** * @package pixreviews * @category core * @author Pixel Grade Team * @copyright (c) 2013, Pixel Grade Media */ interface PixReviewsProcessor { /** * @return static $this */ function run(); /** * @return array */ function status(); /** * @return PixReviewsMeta current data (influenced by user submitted data) */ function data(); /** * Shorthand. * * @return array */ function errors(); /** * Shorthand. * * @return boolean */ function performed_update(); /** * @return boolean true if state is nominal */ function ok(); } # interface
[+]
..
[+]
extended
[-] Meta.php
[edit]
[-] HTMLTag.php
[edit]
[-] Processor.php
[edit]
[-] HTMLElement.php
[edit]
[-] Validator.php
[edit]