You are here

public function Rule::__sleep in Rules 7.2

Overrides RulesContainerPlugin::__sleep

File

includes/rules.plugins.inc, line 208
Contains plugin info and implementations not needed for rule evaluation.

Class

Rule
An actual rule.

Code

public function __sleep() {
  return parent::__sleep() + drupal_map_assoc(array(
    'conditions',
    'label',
  ));
}