OneOnePropertyService extends AbstractOneOnePropertyService implements IModelPropertyProvider
Contains some of the base programming for a property service backed by a single repository and model.
Table of Contents
$repo | Repo | IRepository |
---|---|---|
$propCfg | Property config for the service | IPropertySvcConfig |
$lastId | Last id from getValue() | int |
__construct() | Create a new property service | mixed |
onSave() | array | |
loadById() | Loads an item from somewhere by id. | IModel |
onSave() | array | |
loadById() | Loads an item from somewhere by id. | IModel |
__construct() | Create a new property service | mixed |
getModelServiceConfig() | Get the property config for the main property set | IPropertySvcConfig |
getSaveFunction() | Retrieve the save function used for saving stuff from the provider. | \buffalokiwi\magicgraph\persist\IRunnable[] |
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 |
init() | Initialize the model. | void |
getPropertyConfig() | Get the property config for the main property set | IPropertyConfig |
Properties
$repo
Repo
private
IRepository
$repo
$propCfg
Property config for the service
private
IPropertySvcConfig
$propCfg
$lastId
Last id from getValue()
private
int
$lastId
= ""
Methods
__construct()
Create a new property service
public
__construct(
$cfg :
IPropertyConfig
, $repo :
IRepository
)
: mixed
Parameters
- $cfg : IPropertyConfig
- $repo : IRepository
Return values
mixedonSave()
protected
onSave(
$model :
IModel
)
: array
Parameters
- $model : IModel
Return values
arrayloadById()
Loads an item from somewhere by id.
protected
loadById(
$id :
int
)
: IModel
If $id == 0, then this must return an empty model.
Parameters
- $id : int
Id
Return values
IModel —Model
onSave()
protected
abstract onSave(
$model :
IModel
)
: array
Parameters
- $model : IModel
Return values
arrayloadById()
Loads an item from somewhere by id.
protected
abstract loadById(
$id :
int
)
: IModel
If $id == 0, then this must return an empty model.
Parameters
- $id : int
Id
Return values
IModel —Model
__construct()
Create a new property service
public
__construct(
$cfg :
IPropertyConfig
)
: mixed
Parameters
- $cfg : IPropertyConfig
Return values
mixedgetModelServiceConfig()
Get the property config for the main property set
public
getModelServiceConfig(
)
: IPropertySvcConfig
Return values
IPropertySvcConfig —config
getSaveFunction()
Retrieve the save function used for saving stuff from the provider.
public
getSaveFunction(
$parent :
IModel
)
: \buffalokiwi\magicgraph\persist\IRunnable[]
Parameters
- $parent : IModel
Return values
\buffalokiwi\magicgraph\persist\IRunnable[]getValue()
Retrieve the value of some property
public
getValue(
$model :
IModel
, $value :
mixed
[, $context :
array
= [] ]
)
: mixed
Parameters
- $model : IModel
- $value : mixed
- $context : array = []
Tags
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
validate()
Test to see if this model is valid prior to save()
public
validate(
$model :
IModel
)
: void
Parameters
- $model : IModel
Tags
init()
Initialize the model.
public
init(
$model :
IModel
)
: void
Parameters
- $model : IModel
Model instance
getPropertyConfig()
Get the property config for the main property set
public
getPropertyConfig(
)
: IPropertyConfig
Return values
IPropertyConfig —config