You are here

protected function RulesPlugin::exportToArray in Rules 7.2

1 call to RulesPlugin::exportToArray()
RulesPlugin::export in includes/rules.core.inc
Exports a rule configuration.
2 methods override RulesPlugin::exportToArray()
RulesAbstractPlugin::exportToArray in includes/rules.core.inc
RulesContainerPlugin::exportToArray in includes/rules.core.inc

File

includes/rules.core.inc, line 1395
Rules base classes and interfaces needed for any rule evaluation.

Class

RulesPlugin
Base class for rules plugins.

Code

protected function exportToArray() {
  $export[strtoupper($this
    ->plugin())] = $this
    ->exportSettings();
  return $export;
}