is the model controled by auth module
if true relations and foreign keys models are build with auth()
if false relations and foreign keys models are build with full CRUD access
@var boolean
modelEvents
ORM Model Event class
Events are fired on model public method execution :
- create()
- read()
- update()
- delete()
They can be overwritten in descendant class files.
The modelStructure class is an iteratorItem child that olds Methods :
- to launch PHP overloading Functions over a model(set, get, call, invoke)
- to access and traverse Model structure (properties, methods, relations, iterator (to be renamed))
- to access database and sql classes
- to describe the Model : __module()
iterator that stores model instances
@var mixed(model or stdClass)
private$_state
modelStructure::$_state
state of the model is @todo - is_init : the model doesnt map anything @todo - is_virgin : the model only maps the table @todo - is_model : the model maps its table and foreign keys
- is_instance : the model maps a table and is an instance
- is_selection : the model maps a table and is set of instances
@var string