$name
$name : string
Name of the input field.
A HTML element for checkboxes.
__construct(string $name, string|null $id = null, string|null $class = null, string|null $title = null, string|null $value = '1', boolean|null $checked = false, string|null $label = null)
Checkbox 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 |
boolean|null | $checked | set checkbox checked |
string|null | $label | label, that is shown together with the checkbox |
newBox(string $name, string $id, string $class, string $value, boolean|null $checked = false, string|null $label = null, string|null $title = null) : \OpenEstate\PhpExport\Html\Checkbox
Create a checkbox.
string | $name | name of the input field |
string | $id | id attribute |
string | $class | class attribute |
string | $value | value of the form field |
boolean|null | $checked | set checkbox checked |
string|null | $label | label, that is shown together with the checkbox |
string|null | $title | title attribute |
created checkbox element