|
Previous Page |
Solar_View_Helper_FormSelect |
Next Page |
Properties
Public
None.
Protected
$_attribs
(array) The form element attributes (checked, selected, readonly, etc).
Inherited from Solar_View_Helper_FormElement.
$_config
(array) Collection point for configuration values.
Inherited from Solar_Base.
Note that you do not define config defaults in $_config directly.
<?php
// DO NOT DO THIS
protected $_config = array(
'foo' => 'bar',
'baz' => 'dib',
);
?>
Instead, define config defaults in a protected property named for the class, withan underscore prefix.
For exmple, a "Vendor_Class_Name" class would define the default config array in "$_Vendor_Class_Name". This convention lets child classes inherit parent config keys and values.
<?php
// DO THIS INSTEAD
protected $_Vendor_Class_Name = array(
'foo' => 'bar',
'baz' => 'dib',
);
?>
$_disable
(bool) Whether or not the element is to be disabled.
Inherited from Solar_View_Helper_FormElement.
$_feedback
(bool) Feedback messages for the element.
Inherited from Solar_View_Helper_FormElement.
$_info
(array) Default form element information.
Inherited from Solar_View_Helper_FormElement.
$_keys
(array) The order in which to process info keys.
Inherited from Solar_View_Helper_FormElement.
Attribs is last so that attributes are unset properly.
$_label
(string) The form element label.
Inherited from Solar_View_Helper_FormElement.
$_name
(string) The form element name.
Inherited from Solar_View_Helper_FormElement.
$_options
(array) Options for checkbox, select, and radio elements.
Inherited from Solar_View_Helper_FormElement.
$_require
(bool) Whether or not the element is required.
Inherited from Solar_View_Helper_FormElement.
$_type
(string) The form element type (text, radio, etc).
Inherited from Solar_View_Helper_FormElement.
$_value
(string) The form element value.
Inherited from Solar_View_Helper_FormElement.
$_view
(Solar_View) Reference to the parent Solar_View object.
Inherited from Solar_View_Helper.
Private
None.