Methods
Allow for getter, setter and unset methods
__call(string $method, array $args) : mixed
Inherited
| inherited_from | 
\Orm\Model::__call() | 
Parameters
$method
string
$args
array
Exceptions
Returns
mixed
  
 
__callStatic()
        
__callStatic($method, $args) 
Inherited
| inherited_from | 
\Orm\Model::__callStatic() | 
Parameters
$method
$args
  
 
Allow object cloning to new object
__clone() 
Inherited
| inherited_from | 
\Orm\Model::__clone() | 
  
 
Constructor
__construct($data, $new, $view, $cache) 
Inherited
| inherited_from | 
\Orm\Model::__construct() | 
Parameters
$view
$cache
  
 
Fetch a property or relation
__get($property) : mixed
Inherited
| inherited_from | 
\Orm\Model::__get() | 
Parameters
Returns
mixed
  
 
Check whether a property exists, only return true for table columns, relations, eav and custom data
__isset(string $property) : bool
Inherited
| inherited_from | 
\Orm\Model::__isset() | 
Parameters
$property
string
Returns
bool
  
 
Set a property or relation
__set($property, $value) : \Orm\Model
Inherited
| inherited_from | 
\Orm\Model::__set() | 
Parameters
Returns
  
 
Empty a property, relation or custom data
__unset(string $property) 
Inherited
| inherited_from | 
\Orm\Model::__unset() | 
Parameters
$property
string
  
 
Fetch or set relations on this object
To be used only after having fetched them from the database!
_relate(array | bool | null $rels) : void | array
Inherited
| inherited_from | 
\Orm\Model::_relate() | 
Parameters
$rels
arrayboolnull
Exceptions
\FuelException | 
Invalid input for _relate(), should be an array | 
\Orm\FrozenObject | 
No changes allowed | 
Returns
voidarray
  
 
Update the original setting for this object
_update_original(array | null $original) 
Inherited
| inherited_from | 
\Orm\Model::_update_original() | 
Parameters
$original
arraynull
  
 
Update the original relations for this object
_update_original_relations($relations) 
Inherited
| inherited_from | 
\Orm\Model::_update_original_relations() | 
Parameters
$relations
  
 
Attempt to retrieve an earlier loaded object
cached_object(array | \Orm\Model $obj, null | string $class) : \Orm\Model | false
Inherited
| inherited_from | 
\Orm\Model::cached_object() | 
Parameters
$class
nullstring
Returns
  
 
Get a defined condition for this class
condition(string $type) : array
Inherited
| inherited_from | 
\Orm\Model::condition() | 
Parameters
$type
stringtype of condition to return
 
Returns
array
  
 
Fetch the database connection name to use
connection(bool $writeable) : null | string
Inherited
| inherited_from | 
\Orm\Model::connection() | 
Parameters
$writeable
boolif true return the writeable connection (if set)
 
Returns
nullstring
  
 
Count entries, optionally only those matching the $options
count(array $options) : int
Inherited
| inherited_from | 
\Orm\Model::count() | 
Parameters
Returns
int
  
 
current()
        
current() 
Inherited
| inherited_from | 
\Orm\Model::current() | 
  
 
Delete current object
delete(mixed $cascade, bool $use_transaction) : \Orm\Model
Inherited
| inherited_from | 
\Orm\Model::delete() | 
Parameters
$cascade
mixednull = use default config, bool = force/prevent cascade, array cascades only the relations that are in the array
 
$use_transaction
bool
Exceptions
Returns
\Orm\Modelthis instance as a new object without primary key(s)
 
  
 
Disable an observer event
disable_event(string $event) : void
Inherited
| inherited_from | 
\Orm\Model::disable_event() | 
Parameters
$event
stringevent to disable
 
  
 
Enable a defined observer
enable_event(string $event) : void
Inherited
| inherited_from | 
\Orm\Model::enable_event() | 
Parameters
$event
stringclass name of the observer (including namespace)
 
  
 
Find one or more entries
find(int | null $id, array $options) : \Orm\Model | \Orm\Model[]
Inherited
| inherited_from | 
\Orm\Model::find() | 
Parameters
$id
intnull
$options
array
Exceptions
Returns
  
 
Flush the object cache
flush_cache(null | string | object $class) 
Inherited
| inherited_from | 
\Orm\Model::flush_cache() | 
Parameters
$class
nullstringobject
  
 
Create a new model instance
forge($data, $new, $view, $cache) 
Inherited
| inherited_from | 
\Orm\Model::forge() | 
Parameters
$data
$new
$view
$cache
  
 
Freeze the object to disallow changing it or saving it
freeze() 
Inherited
| inherited_from | 
\Orm\Model::freeze() | 
  
 
Allow populating this object from an array, and any related objects
from_array(array $values) : \Orm\Model
Inherited
| inherited_from | 
\Orm\Model::from_array() | 
Parameters
$values
arrayassoc array with named values to store in the object
 
Returns
\Orm\Modelthis instance as a new object without primary key(s)
 
  
 
Check whether the object was frozen
frozen() : boolean
Inherited
| inherited_from | 
\Orm\Model::frozen() | 
Returns
boolean
  
 
Get
get(string $property, array $conditions) : mixed
Inherited
Gets a property or
relation from the
object
| access | 
public | 
| inherited_from | 
\Orm\Model::get() | 
Parameters
$property
string
$conditions
array
Returns
mixed
  
 
Generates an array with keys new & old that contain ONLY the values that differ between the original and
the current unsaved model.
get_diff() : array
Inherited
Note: relations are given as single or array of imploded pks
| inherited_from | 
\Orm\Model::get_diff() | 
Returns
array
  
 
Returns a list of properties and their information with _to_array_exclude
properties removed.
get_filtered_properties() : array
Inherited
| inherited_from | 
\Orm\Model::get_filtered_properties() | 
Returns
array
  
 
Provide the identifying details in the form of an array
get_pk_assoc() : array
Inherited
| inherited_from | 
\Orm\Model::get_pk_assoc() | 
Returns
array
  
 
Returns a list of properties that will be excluded when to_array() is used.
get_to_array_exclude() : array
Inherited
| inherited_from | 
\Orm\Model::get_to_array_exclude() | 
Returns
array
  
 
Compare current state with the retrieved state
is_changed(string | array $property) : bool
Inherited
| inherited_from | 
\Orm\Model::is_changed() | 
Parameters
$property
stringarray
Exceptions
Returns
bool
  
 
is_fetched()
        
is_fetched($relation) 
Inherited
| inherited_from | 
\Orm\Model::is_fetched() | 
Parameters
$relation
  
 
is_new()
        
is_new() 
Inherited
| inherited_from | 
\Orm\Model::is_new() | 
  
 
key()
        
key() 
Inherited
| inherited_from | 
\Orm\Model::key() | 
  
 
Find the maximum
max($key) : bool | int
Inherited
| inherited_from | 
\Orm\Model::max() | 
Parameters
Returns
boolintMaximum value or false
  
 
Find the minimum
min($key) : object | array
Inherited
| inherited_from | 
\Orm\Model::min() | 
Parameters
Returns
objectarray
  
 
next()
        
next() 
Inherited
| inherited_from | 
\Orm\Model::next() | 
  
 
Calls all observers for the current event
observe($event) 
Inherited
| inherited_from | 
\Orm\Model::observe() | 
Parameters
  
 
Get the class's observers and what they observe
observers(string $specific, mixed $default) : array
Inherited
| inherited_from | 
\Orm\Model::observers() | 
Parameters
$specific
stringspecific observer to retrieve info of, allows direct param access by using dot notation
 
$default
mixeddefault return value when specific key wasn't found
 
Returns
array
  
 
offsetExists()
        
offsetExists($offset) 
Inherited
| inherited_from | 
\Orm\Model::offsetExists() | 
Parameters
$offset
  
 
offsetGet()
        
offsetGet($offset) 
Inherited
| inherited_from | 
\Orm\Model::offsetGet() | 
Parameters
$offset
  
 
offsetSet()
        
offsetSet($offset, $value) 
Inherited
| inherited_from | 
\Orm\Model::offsetSet() | 
Parameters
$offset
$value
  
 
offsetUnset()
        
offsetUnset($offset) 
Inherited
| inherited_from | 
\Orm\Model::offsetUnset() | 
Parameters
$offset
  
 
Get the primary key(s) of this class
primary_key() : array
Inherited
| inherited_from | 
\Orm\Model::primary_key() | 
Returns
array
  
 
Get the class's properties
properties() : array
Inherited
| inherited_from | 
\Orm\Model::properties() | 
Exceptions
\FuelException | 
Listing columns failed | 
Returns
array
  
 
Fetches a property description array, or specific data from it
property(string $key, mixed $default) : mixed
Inherited
| inherited_from | 
\Orm\Model::property() | 
Parameters
$key
stringproperty or property.key
 
$default
mixedreturn value when key not present
 
Returns
mixed
  
 
Creates a new query with optional settings up front
query($options) : \Orm\Query
Inherited
| inherited_from | 
\Orm\Model::query() | 
Parameters
Returns
  
 
Register an observer
register_observer(string $name, mixed $options) : void
Inherited
| inherited_from | 
\Orm\Model::register_observer() | 
Parameters
$name
stringclass name of the observer (including namespace)
 
$options
mixedobserver options
 
  
 
Reset values to those gotten from the database
reset() 
Inherited
| inherited_from | 
\Orm\Model::reset() | 
  
 
rewind()
        
rewind() 
Inherited
| inherited_from | 
\Orm\Model::rewind() | 
  
 
Enable sanitization mode in the object
sanitize() : \Auth\Model\Auth_Grouppermission
Inherited
| inherited_from | 
\Orm\Model::sanitize() | 
| fluent | 
This method is part of a fluent interface and will return the same instance | 
Returns
  
 
Returns the current sanitization state of the object
sanitized() : bool
Inherited
| inherited_from | 
\Orm\Model::sanitized() | 
Returns
bool
  
 
Save the object and it's relations, create when necessary
save(mixed $cascade, $use_transaction) : bool
Inherited
| inherited_from | 
\Orm\Model::save() | 
Parameters
$cascade
mixednull = use default config, bool = force/prevent cascade, array cascades only the relations that are in the array
 
$use_transaction
Returns
bool
  
 
Set
set(string | array $property, string $value) : \Orm\Model
Inherited
Sets a property or
relation of the
object
| access | 
public | 
| inherited_from | 
\Orm\Model::set() | 
Parameters
$property
stringarray
$value
stringin case $property is a string
 
Exceptions
Returns
  
 
Sets the connection to use for this model.
set_connection(string $connection) 
Inherited
| inherited_from | 
\Orm\Model::set_connection() | 
Parameters
$connection
string
  
 
Sets the write connection to use for this model.
set_write_connection(string $connection) 
Inherited
| inherited_from | 
\Orm\Model::set_write_connection() | 
Parameters
$connection
string
  
 
Get the table name for this class
table() : string
Inherited
| inherited_from | 
\Orm\Model::table() | 
Returns
string
  
 
Allow converting this object to a real object
to_object($custom, $recurse) : object
Inherited
| inherited_from | 
\Orm\Model::to_object() | 
Parameters
$custom
$recurse
Returns
object
  
 
Unfreeze the object to allow changing it or saving it again
unfreeze() 
Inherited
| inherited_from | 
\Orm\Model::unfreeze() | 
  
 
Unregister an observer
unregister_observer(string $name) : void
Inherited
| inherited_from | 
\Orm\Model::unregister_observer() | 
Parameters
$name
stringclass name of the observer (including namespace)
 
  
 
Disable sanitization mode in the object
unsanitize() : \Auth\Model\Auth_Grouppermission
Inherited
| inherited_from | 
\Orm\Model::unsanitize() | 
| fluent | 
This method is part of a fluent interface and will return the same instance | 
Returns
  
 
valid()
        
valid() 
Inherited
| inherited_from | 
\Orm\Model::valid() | 
  
 
Fetch the model's views
views() : array
Inherited
| inherited_from | 
\Orm\Model::views() | 
Exceptions
Returns
array
  
 
EAV attribute getter.
_get_eav($attribute, $isset, $unset) : mixed
Inherited
Also deals with isset() and unset()
| inherited_from | 
\Orm\Model::_get_eav() | 
Parameters
$attribute
$isset
$unset
Exceptions
Returns
mixed
  
 
Sanitizatize a data value
_sanitize(string $field, mixed $value) : mixed
Inherited
| inherited_from | 
\Orm\Model::_sanitize() | 
Parameters
$field
stringName of the property that is being sanitized
 
$value
mixedValue to sanitize
 
Returns
mixed
  
 
EAV attribute setter
_set_eav(string $attribute, string $value) : mixed
Inherited
| inherited_from | 
\Orm\Model::_set_eav() | 
Parameters
$attribute
string
$value
string
Exceptions
Returns
mixed
  
 
Adds the primary keys in where clauses to the given query.
add_primary_keys_to_where(\Orm\Query $query) 
Inherited
| inherited_from | 
\Orm\Model::add_primary_keys_to_where() | 
Parameters
  
 
Save using INSERT
create() 
Inherited
| inherited_from | 
\Orm\Model::create() | 
  
 
Deletes this model instance from the database.
delete_self() : bool
Inherited
| inherited_from | 
\Orm\Model::delete_self() | 
Returns
bool
  
 
Allows subclasses to more easily define if a relation can be cascade deleted or not.
should_cascade_delete(array $rel) : bool
Inherited
| inherited_from | 
\Orm\Model::should_cascade_delete() | 
Parameters
$rel
array
Returns
boolFalse to stop the relation from being deleted. Works the same as the cascade_delete property
  
 
Save using UPDATE
update() 
Inherited
| inherited_from | 
\Orm\Model::update() | 
  
 
 Properties
 
<p>belongs_to relationships</p>
$_belongs_to : array
 
 
<p>array of fetched objects</p>
$_cached_objects : array
Inherited
| inherited_from | 
\Orm\Model::$$_cached_objects | 
  
 
 
<p>connection to use</p>
$_connection : string
 
 
<p>storage for custom properties on this object</p>
$_custom_data : array
Inherited
| inherited_from | 
\Orm\Model::$$_custom_data | 
  
 
 
<p>keeps the current state of the object</p>
$_data : array
Inherited
| inherited_from | 
\Orm\Model::$$_data | 
  
 
 
$_data_relations
$_data_relations : array
Inherited
| inherited_from | 
\Orm\Model::$$_data_relations | 
  
 
 
<p>disabled observer events</p>
$_disabled_events : array
Inherited
| inherited_from | 
\Orm\Model::$$_disabled_events | 
  
 
 
<p>keeps to object frozen</p>
$_frozen : bool
Inherited
| inherited_from | 
\Orm\Model::$$_frozen | 
  
 
 
<p>keeps track of whether it's a new object</p>
$_is_new : bool
Inherited
| inherited_from | 
\Orm\Model::$$_is_new | 
  
 
 
$_iterable
$_iterable 
Inherited
| inherited_from | 
\Orm\Model::$$_iterable | 
  
 
 
<p>defined observers</p>
$_observers : array
 
 
<p>cached observers</p>
$_observers_cached : array
Inherited
| inherited_from | 
\Orm\Model::$$_observers_cached | 
  
 
 
<p>keeps a copy of the object as it was retrieved from the database</p>
$_original : array
Inherited
| inherited_from | 
\Orm\Model::$$_original | 
  
 
 
<p>keeps a copy of the relation ids that were originally retrieved from the database</p>
$_original_relations : array
Inherited
| inherited_from | 
\Orm\Model::$$_original_relations | 
  
 
 
<p>name or names of the primary keys</p>
$_primary_key : array
 
 
<p>model properties</p>
$_properties : array
 
 
<p>cached properties</p>
$_properties_cached : array
Inherited
| inherited_from | 
\Orm\Model::$$_properties_cached | 
  
 
 
<p>relationships</p>
$_relations_cached : string
Inherited
| inherited_from | 
\Orm\Model::$$_relations_cached | 
  
 
 
<p>keeps track of relations that need to be reset before saving the new ones</p>
$_reset_relations : array
Inherited
| inherited_from | 
\Orm\Model::$$_reset_relations | 
  
 
 
<p>If this is a records data will be sanitized on get</p>
$_sanitization_enabled : bool
Inherited
| inherited_from | 
\Orm\Model::$$_sanitization_enabled | 
  
 
 
<p>table name to overwrite assumption</p>
$_table_name : string
 
 
<p>cached tables</p>
$_table_names_cached : array
Inherited
| inherited_from | 
\Orm\Model::$$_table_names_cached | 
  
 
 
<p>name or columns that need to be excluded from any to_array() result</p>
$_to_array_exclude : array
Inherited
| inherited_from | 
\Orm\Model::$$_to_array_exclude | 
  
 
 
<p>array of valid relation types</p>
$_valid_relations : array
Inherited
| inherited_from | 
\Orm\Model::$$_valid_relations | 
  
 
 
<p>view name when used</p>
$_view : string
Inherited
| inherited_from | 
\Orm\Model::$$_view | 
  
 
 
<p>cached properties</p>
$_views_cached : array
Inherited
| inherited_from | 
\Orm\Model::$$_views_cached | 
  
 
 
<p>write connection to use</p>
$_write_connection : string
 
 
<p>global array to track circular references in to_array()</p>
$to_array_references : array
Inherited
| inherited_from | 
\Orm\Model::$$to_array_references |