function RulesPlugin::exportToArray

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 1406

Class

RulesPlugin
Base class for rules plugins.

Code

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