InputWidgetHiddenBase Class Reference
[View]
A hidden input widget. More...
Inheritance diagram for
InputWidgetHiddenBase:
Protected Member Functions |
|
extend_attributes (&$attrs, $params, $name, $title, $value, $policy) | |
Add new attributes or process old ones.
|
|
render_input ($attrs, $params, $name, $title, $value, $policy) | |
Render the actual widget. |
|
render_postprocess ($output, $policy) | |
Last steps. |
Detailed Description
A hidden input widget.
Definition at line 8 of file hidden.input.widget.php.
Member Function Documentation
InputWidgetHiddenBase::extend_attributes | ( | &$ | attrs, | |
$ | params, | |||
$ | name, | |||
$ | title, | |||
$ | value, | |||
$ | policy | |||
) | [protected] |
Add new attributes or process old ones.
Reimplemented from InputWidgetBaseBase.
Definition at line 12 of file hidden.input.widget.php.
00012 { 00013 $attrs['value'] = $value; 00014 }
InputWidgetHiddenBase::render_input | ( | $ | attrs, | |
$ | params, | |||
$ | name, | |||
$ | title, | |||
$ | value, | |||
$ | policy | |||
) | [protected] |
Render the actual widget.
Reimplemented from InputWidgetBaseBase.
Definition at line 19 of file hidden.input.widget.php.
00019 { 00020 return html::input('hidden', $name, $attrs); 00021 }
InputWidgetHiddenBase::render_postprocess | ( | $ | output, | |
$ | policy | |||
) | [protected] |
Last steps.
Reimplemented from InputWidgetBaseBase.
Definition at line 26 of file hidden.input.widget.php.
The documentation for this class was generated from the following file:
- gyro/core/view/widgets/input/base/hidden.input.widget.php