function RulesContainerPluginUI::operations

Overrides RulesPluginUI::operations

1 call to RulesContainerPluginUI::operations()
RulesRuleUI::operations in ui/ui.plugins.inc
Implements RulesPluginUIInterface.
1 method overrides RulesContainerPluginUI::operations()
RulesRuleUI::operations in ui/ui.plugins.inc
Implements RulesPluginUIInterface.

File

ui/ui.core.inc, line 1082

Class

RulesContainerPluginUI
UI for Rules Container.

Code

public function operations() {
    $ops = parent::operations();
    $add_ops = self::addOperations();
    $ops['#links'] += $add_ops['#links'];
    return $ops;
}