Inheritance diagram for ButtonField:
Definition at line 7 of file button-field.inc.php.
Public Member Functions | |
__construct ($name, &$parentForm, array $attribs=array('type'=> 'button')) | |
Constructor. | |
drawInput () | |
Draw the button. | |
__set ($name, $value) | |
Magic setter. | |
validate () | |
Validate Needed to fully implement Field, but nothing is done for a button. | |
getData () | |
Get data from field Needed to fully implement Field, but nothing is done for a button. | |
getSqlImpl () | |
Get SQL string Needed to fully implement Field, but nothing is done for a button. | |
hasError () | |
Check for errors. | |
Protected Attributes | |
$type = 'button' | |
Button type, one of 'reset', 'submit', 'button'. |
|
Constructor.
Definition at line 17 of file button-field.inc.php. |
|
Magic setter.
Reimplemented from AbstractField. Definition at line 36 of file button-field.inc.php. References $type. |
|
Draw the button.
Implements Field. Definition at line 25 of file button-field.inc.php. References AbstractField::extrasAsAttributes(). |
|
Get data from field Needed to fully implement Field, but nothing is done for a button.
Reimplemented from AbstractField. Definition at line 60 of file button-field.inc.php. |
|
Get SQL string Needed to fully implement Field, but nothing is done for a button.
Reimplemented from AbstractField. Definition at line 69 of file button-field.inc.php. |
|
Check for errors.
Reimplemented from AbstractField. Definition at line 78 of file button-field.inc.php. |
|
Validate Needed to fully implement Field, but nothing is done for a button.
Reimplemented from AbstractField. Definition at line 51 of file button-field.inc.php. |
|
Button type, one of 'reset', 'submit', 'button'.
Definition at line 9 of file button-field.inc.php. Referenced by __set(). |