$cssClass =
[line 35]
CSS class for styling
$dataBased =
[line 51]
Enable or disable use of $dataField
$dataField =
[line 45]
Data field name for looking up initial data
The name stored here is used to lookup initial data for the plugin in the render's variables. The value itself depends on the plugin that extends this base class. Defaults to the ID of the plugin. See also tutorials on the Zikula site.
$errorMessage =
[line 94]
Error message to display when selection does not validate
$group =
[line 62]
Group name for this input
The group name is used to locate data in the render (when databased) and to restrict which plugins to do validation on (to be implemented).
Tags:
$inputName =
[line 119]
HTML input name for this plugin. Defaults to the ID of the plugin.
$isValid = true
[line 80]
Validation indicator used by the framework.
The true/false value of this variable indicates whether or not the list selection is valid.
$items = array()
[line 113]
The list of selectable items
This is an array of arrays like this: array( array('text' => 'A', 'value' => '1'), array('text' => 'B', 'value' => '2'), array('text' => 'C', 'value' => '3') )
$itemsDataField =
[line 72]
Data field name for looking up initial item list
The name stored here is used to lookup initial item list in the render's variables. The value should be an array as described for the $items variable. Defaults to the data field name concatenated with "Items". See also tutorials on the Zikula site.
$mandatory =
[line 87]
Enable or disable mandatory check
$myLabel =
[line 103]
Text label for this plugin
This variable contains the label text for the input. The pnFormLabel plugin will set this text automatically when it is a label for this list.
$readOnly =
[line 30]
Enable or disable read only mode