function Notifications_Event::store_object in Notifications 6.4
Add event object to be serialized and stored with the event
File
- includes/
notifications_event.class.inc, line 200 - Drupal Notifications Framework - Default class file
Class
- Notifications_Event
- Message destination class
Code
function store_object($type, $object) {
$this->params['objects'][$type] = $object;
$this
->set_object($type, $object);
}