InputWidgetPasswordBase Class Reference
[View]
A password widget. More...
Inheritance diagram for
InputWidgetPasswordBase:
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. |
Detailed Description
A password widget.
Definition at line 8 of file password.input.widget.php.
Member Function Documentation
InputWidgetPasswordBase::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 password.input.widget.php.
00012 { 00013 $attrs['value'] = $value; 00014 }
InputWidgetPasswordBase::render_input | ( | $ | attrs, | |
$ | params, | |||
$ | name, | |||
$ | title, | |||
$ | value, | |||
$ | policy | |||
) | [protected] |
Render the actual widget.
Reimplemented from InputWidgetBaseBase.
Definition at line 19 of file password.input.widget.php.
00019 { 00020 return html::input('password', $name, $attrs); 00021 }
The documentation for this class was generated from the following file:
- gyro/core/view/widgets/input/base/password.input.widget.php