You are here

function Messaging_Message::store in Messaging 6.4

Same name and namespace in other branches
  1. 6.3 classes/messaging_message.class.inc \Messaging_Message::store()

Save to store if not saved yet or updated

File

includes/messaging_message.class.inc, line 371
Drupal Messaging Framework - Message class file

Class

Messaging_Message
Message class

Code

function store() {
  if (empty($this->mqid) || $this->updated) {
    $this
      ->save();
  }
}