You are here

public function Notifications_Event::unserialize in Notifications 6.4

Same name and namespace in other branches
  1. 7 notifications.event.inc \Notifications_Event::unserialize()

Unserialize after db loading

Overrides Messaging_Object::unserialize

File

includes/notifications_event.class.inc, line 373
Drupal Notifications Framework - Default class file

Class

Notifications_Event
Message destination class

Code

public function unserialize() {
  $this->params = $this->params ? unserialize($this->params) : array();
}