Documentation

IPropertyBehavior

Callbacks that can override behavior in a property.

Table of Contents

getValidateCallback() Validate some property value Closure
getSetterCallback() Callback used to set an objects value. Closure
getGetterCallback() Returns value to get f( IProperty, $value, array $context ) : mixed Closure|null
getInitCallback() Callback used for initializing some value when the model is loaded. Closure
getModelSetterCallback() Callback used to set a value. Closure
getModelGetterCallback() Callback used when retrieving a value. Closure|null
getOnChangeCallback() Retrieve the onChange callback f( IProperty, oldValue, newValue ) : void Closure|null
getIsEmptyCallback() Retrieve the closure that can test empty state. Closure|null
getHTMLInputCallback() Retrieve a callback that converts a property into an html form input. Closure|null

Methods

getValidateCallback()

Validate some property value

public getValidateCallback( ) : Closure

[bool is valid] = function( IProperty, [input value] )

Return values
Closure

callback

getSetterCallback()

Callback used to set an objects value.

public getSetterCallback( ) : Closure

Returns the value to set

f( IProperty, $value ) : mixed

Return values
Closure

callback

getGetterCallback()

Returns value to get f( IProperty, $value, array $context ) : mixed

public getGetterCallback( ) : Closure|null
Return values
Closure|null

getInitCallback()

Callback used for initializing some value when the model is loaded.

public getInitCallback( ) : Closure

f( $value ) : mixed

Return values
Closure

callback

getModelSetterCallback()

Callback used to set a value.

public getModelSetterCallback( ) : Closure

This is called prior to IProperty::validate() and the return value will replace the supplied value.

f( IModel, IProperty, value )

Return values
Closure

callback

getModelGetterCallback()

Callback used when retrieving a value.

public getModelGetterCallback( ) : Closure|null

Called during IProperty::getValue(). The return value will be used as the return value from getValue(); f( IModel, IProperty, value )

Return values
Closure|null

getOnChangeCallback()

Retrieve the onChange callback f( IProperty, oldValue, newValue ) : void

public getOnChangeCallback( ) : Closure|null
Return values
Closure|null

getIsEmptyCallback()

Retrieve the closure that can test empty state.

public getIsEmptyCallback( ) : Closure|null
Return values
Closure|null

getHTMLInputCallback()

Retrieve a callback that converts a property into an html form input.

public getHTMLInputCallback( ) : Closure|null

f( IModel $model, IProperty $property, string $name, string $id, $value ) : IElement

Return values
Closure|null

Search results