INamedPropertyBehavior extends IPropertyBehavior
Named property behavior is the same as property behavior, except that it adds a property name method. This interface is used to define one or more behavior instances per property.
Table of Contents
getPropertyName() | Retrieve the property name associated with this behavior. | string |
---|---|---|
getModelValidationCallback() | Retrieve the model validation callback. | Closure|null |
getBeforeSaveCallback() | Retrieve the before save function f( IModel ) : void | Closure|null |
getAfterSaveCallback() | Retrieve the after save function f( IModel ) : void | Closure|null |
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
getPropertyName()
Retrieve the property name associated with this behavior.
public
getPropertyName(
)
: string
Return values
stringgetModelValidationCallback()
Retrieve the model validation callback.
public
getModelValidationCallback(
)
: Closure|null
f( IModel $model ) throws ValidationException
Return values
Closure|nullgetBeforeSaveCallback()
Retrieve the before save function f( IModel ) : void
public
getBeforeSaveCallback(
)
: Closure|null
Return values
Closure|null —function
getAfterSaveCallback()
Retrieve the after save function f( IModel ) : void
public
getAfterSaveCallback(
)
: Closure|null
Return values
Closure|null —function
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|nullgetInitCallback()
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|nullgetOnChangeCallback()
Retrieve the onChange callback f( IProperty, oldValue, newValue ) : void
public
getOnChangeCallback(
)
: Closure|null
Return values
Closure|nullgetIsEmptyCallback()
Retrieve the closure that can test empty state.
public
getIsEmptyCallback(
)
: Closure|null
Return values
Closure|nullgetHTMLInputCallback()
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