Documentation

IModelPropertyProvider extends IPropertyServiceProvider

This is a common interface used to create relationships between different data sources attached to a single model. (Think foreign keys in a database).

This provider is normally coupled to a repository, and will pull one or more records from that repo based on some property value within the model this property is attached.

Table of Contents

init() Initialize the model. void
getValue() Retrieve the value of some property mixed
setValue() Sets the value of some property void
validate() Test to see if this model is valid prior to save() void
getModelServiceConfig() Retrieve the configuration used to build this provider IPropertySvcConfig
getPropertyConfig() Get the property config for the main property set IPropertyConfig
getSaveFunction() Retrieve the save function used for saving stuff from the provider. IRunnable

Methods

getValue()

Retrieve the value of some property

public getValue( $model : IModel , $value : mixed [, $context : array = [] ] ) : mixed
Parameters
$model : IModel
$value : mixed
$context : array = []
Tags
throws
InvalidArgumentException

if the property is invalid

Return values
mixed

value

setValue()

Sets the value of some property

public setValue( $model : IModel , $value : mixed ) : void
Parameters
$model : IModel
$value : mixed

property value

Tags
throws
InvalidArgumentException

if the property is invalid

Search results