You are here

public function Notifications_Object::__sleep in Notifications 7

PHP Magic. Regurn object properties to be serialized

File

./notifications.object.inc, line 254
Drupal Notifications Framework - Default class file

Class

Notifications_Object
Wrapper for Drupal objects

Code

public function __sleep() {
  return array(
    'type',
    'value',
    'name',
  );
}