PHP Class Sesha_Form_Property, horde

See the enclosed file LICENSE for license information (GPL). If you did not receive this file, see http://www.horde.org/licenses/gpl.php.
Author: Bo Daley ([email protected])
Inheritance: extends Horde_Form
Afficher le fichier Open project: horde/horde Class Usage Examples

Méthodes publiques

Méthode Description
__construct ( $vars )
renderActive ( Horde_Form_Renderer $renderer, Variables $vars, string $action, string $method = 'get', string $enctype = null, boolean $focus = true ) Renders the form for editing.
validate ( Variables $vars, $canAutoFill = false ) : boolean Validates the form, checking if it really has been submitted by calling isSubmitted() and if true does any onSubmit() calls for variable types in the form. The _submitted variable is then rechecked.

Méthodes protégées

Méthode Description
_addParameters ( $vars )
_buildTypeClassname ( string $dataType ) : string Helper method to build either h3 style class names as seen in Horde_Form_Type_ccc or autoloadable class names used in Sesha

Method Details

__construct() public méthode

public __construct ( $vars )

_addParameters() protected méthode

protected _addParameters ( $vars )

_buildTypeClassname() protected méthode

Helper method to build either h3 style class names as seen in Horde_Form_Type_ccc or autoloadable class names used in Sesha
protected _buildTypeClassname ( string $dataType ) : string
$dataType string The type identifier to turn into a class name
Résultat string A class name or an empty string

renderActive() public méthode

Renders the form for editing.
public renderActive ( Horde_Form_Renderer $renderer, Variables $vars, string $action, string $method = 'get', string $enctype = null, boolean $focus = true )
$renderer Horde_Form_Renderer A renderer instance, optional since Horde 3.2.
$vars Variables A Variables instance, optional since Horde 3.2.
$action string The form action (url).
$method string The form method, usually either 'get' or 'post'.
$enctype string The form encoding type. Determined automatically if null.
$focus boolean Focus the first form field?

validate() public méthode

Validates the form, checking if it really has been submitted by calling isSubmitted() and if true does any onSubmit() calls for variable types in the form. The _submitted variable is then rechecked.
public validate ( Variables $vars, $canAutoFill = false ) : boolean
$vars Variables A Variables instance, optional since Horde 3.2.
Résultat boolean True if the form is valid.