You are here

public function Messaging_Destination::cache_delete in Messaging 6.4

Same name and namespace in other branches
  1. 7 messaging.destination.inc \Messaging_Destination::cache_delete()

Save object to cache

Overrides Messaging_Cached_Object::cache_delete

File

includes/messaging_destination.class.inc, line 307
Drupal Messaging Framework - Default class file

Class

Messaging_Destination
Message destination class

Code

public function cache_delete() {
  parent::cache_delete();
  $this
    ->cache_by_address($this->type, $this->address, FALSE);
}