Model collection.
protected get_instances( void )
protected get_definitions( void )
protected get_connections( void )
public __construct( ICanBoogie\ActiveRecord\ConnectionCollection $connections, array $definitions = [] )
ICanBoogie\ActiveRecord\ConnectionCollection
$connections
$definitions
Initializes the ICanBoogie\ActiveRecord\ModelCollection::$connections and ICanBoogie\ActiveRecord\ModelCollection::$definitions properties.
ICanBoogie\ActiveRecord\ModelCollection::$connections
ICanBoogie\ActiveRecord\ModelCollection::$definitions
public offsetExists( string $id ) : boolean
$id
Checks if a model is defined.
ArrayAccess::offsetExists()
public offsetSet( string $id, array $definition )
$definition
Sets the definition of a model.
The Model::ID and Model::NAME are set to the provided id if they are not defined.
ICanBoogie\ActiveRecord\ModelAlreadyInstantiated
ArrayAccess::offsetSet()
public offsetGet( string $id ) : ICanBoogie\ActiveRecord\Model
ICanBoogie\ActiveRecord\Model
Returns a ICanBoogie\ActiveRecord\Model instance.
ICanBoogie\ActiveRecord\ModelNotDefined
ArrayAccess::offsetGet()
public offsetUnset( string $id )
Unset the definition of a model.
in attempt to unset the definition of an already instantiated model.
ArrayAccess::offsetUnset()
protected resolve_model_attributes( array $attributes ) : array
$attributes
Resolves model attributes.
The methods replaces Model::CONNECTION and Model::EXTENDING identifier with instances.
protected instantiate_model( array $attributes ) : ICanBoogie\ActiveRecord\Model
Instantiate a model with the specified attributes.
public install( void ) : ICanBoogie\ActiveRecord\ModelCollection
ICanBoogie\ActiveRecord\ModelCollection
Install all the models.
public uninstall( void ) : ICanBoogie\ActiveRecord\ModelCollection
Uninstall all the models.
public is_installed( void ) : array
Check if models are installed.
An array of key/value pair where key is a model identifier and value true if the model is installed, false otherwise.
true
false
protected $instances : ICanBoogie\ActiveRecord\Model[]
ICanBoogie\ActiveRecord\Model[]
Instantiated models.
[]
protected $definitions : array
Models definitions.
protected $connections : ICanBoogie\ActiveRecord\ConnectionCollection
public read-only $connections : ICanBoogie\ActiveRecord\ConnectionCollection
public read-only $definitions : array
public read-only $instances : ICanBoogie\ActiveRecord\Model[]