* available option types
* @var array<string>
*/
- public static $availableOptionTypes = array('aboutMe', 'birthday', 'boolean', 'date', 'integer', 'float', 'password', 'multiSelect', 'radioButton', 'select', 'text', 'textarea', 'message', 'URL');
+ public static $availableOptionTypes = array(
+ 'aboutMe',
+ 'birthday',
+ 'boolean',
+ 'checkboxes',
+ 'date',
+ 'integer',
+ 'float',
+ 'password',
+ 'multiSelect',
+ 'radioButton',
+ 'select',
+ 'text',
+ 'textarea',
+ 'message',
+ 'URL'
+ );
/**
* list of option type that require select options
* @var array<string>
*/
- public static $optionTypesUsingSelectOptions = array('multiSelect', 'radioButton', 'select');
+ public static $optionTypesUsingSelectOptions = array(
+ 'checkboxes',
+ 'multiSelect',
+ 'radioButton',
+ 'select'
+ );
/**
* @see \wcf\page\IPage::readParameters()
$this->visible = $this->userOption->visible;
$this->searchable = $this->userOption->searchable;
$this->showOrder = $this->userOption->showOrder;
- $this->outputClass = $this->userOption->outputClass;
+ $this->outputClass = $this->userOption->outputClass;
}
}