You are here

public function Messaging_Cached_Object::insert in Messaging 6.4

Create object in database

Overrides Messaging_Object::insert

File

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

Class

Messaging_Cached_Object
Class with static caching

Code

public function insert() {
  $result = parent::insert();
  $this
    ->cache_save();
  return $result;
}