You are here

public function Messaging_Object::update in Messaging 6.4

Update object in database

1 call to Messaging_Object::update()
Messaging_Object::save in includes/messaging_object.class.inc
Save to database

File

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

Class

Messaging_Object
Messaging persistent object

Code

public function update() {
  return drupal_write_record($this
    ->db_table(), $this, $this
    ->db_key());
}