Documentation

NamedPropertyBehaviorBuilder

A builder object for the NamedPropertyBehavior class.

NamedPropertyBehavior accepts an instance of this object as a constructor argument.

Table of Contents

$name Property name string
$validate Validate data closure for save() [bool is valid] = function( IProperty, [input value] ) Closure
$getter Get value callback Closure
$setter Set value callback Closure
$mgetter Get value callback Closure
$msetter Set value callback Closure
$init Initializer callback Closure
$beforeSave Before save Closure
$afterSave After save Closure
$mValidate Model Validation Closure|null
__construct() Create a new property behavior builder mixed
getName() Retrieve the property name string
withValidate() Validate some property value IProperty $prop Property object mixed $value The property value return is valid throws ValidationException self
getValidate() Retrieve the validate closure Closure|null
withGetter() Modify the value of some property on get. self
getGetter() Retrieve the getter function Closure|null
withSetter() Modify the value of some property prior to committing the value to the underlying property. self
getSetter() Retrieve the setter function Closure|null
withModelGetter() Modify the value of some property on get. self
getModelGetter() Retrieve the model getter function Closure|null
withModelSetter() Modify the value of some property prior to committing the value to the underlying property. self
getModelSetter() Get the model setter function Closure|null
withInit() A callback used to initialize the default value within the model. self
getInit() Get the init function Closure|null
withBeforeSave() Called prior to the save event and is returned as part of the save function chain. self
getBeforeSave() Retrieve the before save function Closure|null
withAfterSave() Called after the save event and is returned as part of the save function chain. self
getAfterSave() Retrieve the after save function Closure|null
withModelValidation() Sets the model validation callback. this
getModelValidation() Retrieve the model validation callback. Closure|null
build() Retrieve the NamedPropertyBehavior instance NamedPropertyBehavior

Properties

Methods

__construct()

Create a new property behavior builder

public __construct( $name : string ) : mixed
Parameters
$name : string

Property name. All supplied functions will only apply to the specified name.

Tags
throws
InvalidArgumenException

If name is empty

Return values
mixed

withValidate()

Validate some property value IProperty $prop Property object mixed $value The property value return is valid throws ValidationException

public withValidate( $f : Closure ) : self

f( IProperty $prop, mixed $value ) : bool

Parameters
$f : Closure

function

Return values
self

this

withGetter()

Modify the value of some property on get.

public withGetter( $f : Closure ) : self

IProperty $prop Property object mixed $value The property value f( IProperty $prop, mixed $value ) : void

Parameters
$f : Closure

function

Return values
self

this

withSetter()

Modify the value of some property prior to committing the value to the underlying property.

public withSetter( $f : Closure ) : self

IProperty $prop Property object mixed $value The property value f( IProperty $prop, mixed $value ) : void

Parameters
$f : Closure

function

Return values
self

this

withModelGetter()

Modify the value of some property on get.

public withModelGetter( $f : Closure ) : self

Called prior to getter callback.

IModel $model The model containing the property IProperty $prop Property object mixed $value The property value f( IModel $model, IProperty $prop, mixed $value ) : void

Parameters
$f : Closure

function

Return values
self

this

withModelSetter()

Modify the value of some property prior to committing the value to the underlying property.

public withModelSetter( $f : Closure ) : self

Called prior to setter callback.

IModel $model The model containing the property IProperty $prop Property object mixed $value The property value f( IModel $model, IProperty $prop, mixed $value ) : void

Parameters
$f : Closure

function

Return values
self

this

withInit()

A callback used to initialize the default value within the model.

public withInit( $f : Closure ) : self

This is called only once, when the model is first loaded.

Default value is supplied, and the returned value is used as the new default value.

f( mixed $defaultValue ) : mixed

Parameters
$f : Closure

function

Return values
self

this

withBeforeSave()

Called prior to the save event and is returned as part of the save function chain.

public withBeforeSave( $f : Closure ) : self

f( IModel $model ) : \buffalokiwi\magicgraph\persist\IRunnable

This is only used with IPropertySvcConfig instances.

Parameters
$f : Closure

function

Return values
self

this

withAfterSave()

Called after the save event and is returned as part of the save function chain.

public withAfterSave( $f : Closure ) : self

f( IModel $model ) : \buffalokiwi\magicgraph\persist\IRunnable

This is only used with IPropertySvcConfig instances.

Parameters
$f : Closure

function

Return values
self

this

withModelValidation()

Sets the model validation callback.

public withModelValidation( $f : Closure ) : this

f( IModel $model ) throws ValidationException

Parameters
$f : Closure

function

Return values
this

getModelValidation()

Retrieve the model validation callback.

public getModelValidation( ) : Closure|null

f( IModel $model ) throws ValidationException

Return values
Closure|null

Search results