\OpenEstate\PhpExport\HtmlSelect

A HTML element for select boxes.

Summary

Methods
Properties
Constants
__construct()
__destruct()
isBody()
isHeader()
generate()
newMultiSelect()
newSingleSelect()
$name
$onChange
$onFocus
$onBlur
$id
$class
$title
$value
$options
$size
$autofocus
$disabled
$multiple
No constants found
getAttributes()
generateAttributes()
No protected properties found
N/A
No private methods found
No private properties found
N/A

Properties

$name

$name : string

Name of the input field.

Type

string

$onChange

$onChange : string

Executed Javascript, if the value was changed.

Type

string

$onFocus

$onFocus : string

Executed Javascript, if the input element gains the focus.

Type

string

$onBlur

$onBlur : string

Executed Javascript, if the input element loses the focus.

Type

string

$id

$id : string

Specifies a unique id for an element.

Type

string

$class

$class : string

Specifies one or more class names for an element (refers to a class in a style sheet).

Type

string

$title

$title : string

Specifies extra information about an element.

Type

string

$value

$value : string|array

Value of the form field.

Type

string|array

$options

$options : array

Associative array with selection options.

Type

array

$size

$size : string

Size of the select field.

Type

string

$autofocus

$autofocus : boolean

Enable autofocus for the form field.

Type

boolean

$disabled

$disabled : boolean

Set form field disabled.

Type

boolean

$multiple

$multiple : boolean

Set multiple selection enabled.

Type

boolean

Methods

__construct()

__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.

Parameters

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

__destruct()

__destruct() 

AbstractHtmlElement destructor.

isBody()

isBody() : boolean

Determine, if the element is placed within the HTML body.

Returns

boolean —

true, if it is a HTML body element

isHeader()

isHeader() : boolean

Determine, if the element is placed within the HTML header.

Returns

boolean —

true, if it is a HTML header element

generate()

generate() 

newMultiSelect()

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.

Parameters

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

Returns

\OpenEstate\PhpExport\Html\Select

created select element

newSingleSelect()

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.

Parameters

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

Returns

\OpenEstate\PhpExport\Html\Select

created select element

getAttributes()

getAttributes() 

generateAttributes()

generateAttributes() : string

Generate attributes of the HTML element.

Returns

string —

generated attributes in HTML syntax