$name
$name : string
Name of the input field.
A HTML element for select boxes.
__construct(string $name, string|null $id = null, string|null $class = null, string|null $title = null, string|null $value = null, array|null $options = null)
Select constructor.
string | $name | name of the input field |
string|null | $id | id attribute |
string|null | $class | class attribute |
string|null | $title | title attribute |
string|null | $value | value of the input field |
array|null | $options | selection options |
newMultiSelect(string $name, string|null $id = null, string|null $class = null, string|null $value = null, array|null $options = null, integer|null $size = 4, string|null $title = null) : \OpenEstate\PhpExport\Html\Select
Create a multiple selection.
string | $name | name of the form field |
string|null | $id | id attribute |
string|null | $class | class attribute |
string|null | $value | value of the form field |
array|null | $options | selection options |
integer|null | $size | size of the select field |
string|null | $title | title attribute |
created select element
newSingleSelect(string $name, string|null $id = null, string|null $class = null, string|null $value = null, array|null $options = null, string|null $title = null) : \OpenEstate\PhpExport\Html\Select
Create a single selection.
string | $name | name of the form field |
string|null | $id | id attribute |
string|null | $class | class attribute |
string|null | $value | value of the form field |
array|null | $options | selection options |
string|null | $title | title attribute |
created select element