Properties
Properties existing in the Solar_View_Helper_FormCheckbox
class.
Public
None.
Protected
$_Solar_View_Helper_FormCheckbox
(array) Default configuration values.
$_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.
$_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.
$_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.
Private
None.