PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins
/
comments-ratings
/
core
/
interfaces
/
extended
<?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 PixReviewsForm extends PixReviewsHTMLElement { /** * @return static $this */ function addtemplatepath($path); /** * @return PixReviewsFormField */ function field($fieldname); /** * @return static $this */ function errors($errors); /** * @param string field name * @return array error keys with messages */ function errors_for($fieldname); /** * Autocomplete meta object passed on by the processor. * * @param PixReviewsMeta autocomplete values * @return static $this */ function autocomplete(PixReviewsMeta $autocomplete); /** * Retrieves the value registered for auto-complete. This will not fallback * to the default value set in the configuration since fields are * responsible for managing their internal complexity. * * Typically the autocomplete values are what the processor passes on to * the form. * * @return mixed */ function autovalue($key, $default = null); /** * @return string */ function startform(); /** * @return string */ function endform(); /** * @param string template path * @param array configuration * @return string */ function fieldtemplate($templatepath, $conf = array()); } # interface
[+]
..
[-] Form.php
[edit]
[-] FormField.php
[edit]