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