public static function Messaging_Destination::cache_get in Messaging 7
Same name and namespace in other branches
- 6.4 includes/messaging_destination.class.inc \Messaging_Destination::cache_get()
1 call to Messaging_Destination::cache_get()
- Messaging_Destination::cache_by_address in ./
messaging.destination.inc - Cache get/set by method and address
File
- ./
messaging.destination.inc, line 381 - Drupal Messaging Framework - Default class file
Class
- Messaging_Destination
- Message destination class
Code
public static function cache_get($key) {
$cache =& drupal_static('messaging_destination_address');
return isset($cache[$key]) ? $cache[$key] : NULL;
}