You are here

protected static function Messaging_Cached_Object::object_cache_get in Messaging 6.4

Get value from static cache

2 calls to Messaging_Cached_Object::object_cache_get()
Messaging_Cached_Object::object_load in includes/messaging_object.class.inc
Load object by unique key, may have static caching
Messaging_Destination::cache_get in includes/messaging_destination.class.inc

File

includes/messaging_object.class.inc, line 334
Drupal Messaging Framework - Base classes

Class

Messaging_Cached_Object
Class with static caching

Code

protected static function object_cache_get($class_name, $key) {
  return messaging_static_cache_get($class_name, $key);
}