UI
class UI extends JsonConfig (View source)
UI Object
The parent object for all UI config objects. Adds JsonSerializable and methods for setting options.
Methods
Creates a new JsonConfig object
Shortcut method to set the value of an option and return $this.
Parses the config array by passing the values through each method to check validity against if the option exists.
Returns the UI object type
A separator string appended to the label, to visually separate the label from the control.
Whether the label should display above or beside the control.
Details
in
JsonConfig at line 40
__construct(
Options $options,
array $config = array())
Creates a new JsonConfig object
in
JsonConfig at line 64
mixed
__get(
string $option)
Get the value of a set option via magic method.
in
JsonConfig at line 75
Options
getOptions()
Gets the Options object for the JsonConfig
in
JsonConfig at line 90
JsonConfig
setOption(
string $option,
mixed $value)
Shortcut method to set the value of an option and return $this.
In order to maintain backwards compatibility, ConfigObjects will be unwrapped.
in
JsonConfig at line 106
setOptions(
array $config)
Parses the config array by passing the values through each method to check validity against if the option exists.
in
JsonConfig at line 275
array
jsonSerialize()
Custom serialization of the JsonConfig object.
at line 41
string
getType()
Returns the UI object type
at line 55
UI
label(
string $label)
The label to display next to the category picker.
If unspecified, the label of the column the control operates on will be used.
at line 67
UI
labelSeparator(
string $labelSeparator)
A separator string appended to the label, to visually separate the label from the control.
at line 83
UI
labelStacking(
string $labelStacking)
Whether the label should display above or beside the control.
Accepted values: - 'vertical' - 'horizontal'
at line 100
UI
cssClass(
string $cssClass)
The CSS class to assign to the control, for custom styling.