public static function Messaging_Object::object_load in Messaging 6.4
Load object by unique key, no static caching
1 call to Messaging_Object::object_load()
- Messaging_Cached_Object::object_load in includes/
messaging_object.class.inc - Load object by unique key, may have static caching
1 method overrides Messaging_Object::object_load()
- Messaging_Cached_Object::object_load in includes/
messaging_object.class.inc - Load object by unique key, may have static caching
File
- includes/
messaging_object.class.inc, line 232 - Drupal Messaging Framework - Base classes
Class
- Messaging_Object
- Messaging persistent object
Code
public static function object_load($table, $key, $value, $class = NULL) {
if ($object = self::db_load($table, $key, $value)) {
return $class ? self::object_build($object, $class) : $object;
}
}