You are here

public function RulesRuleUI::__construct in Rules 7.2

Constructs a RulesRuleUI object.

Parameters

FacesExtendable $object:

Overrides RulesPluginUI::__construct

File

ui/ui.plugins.inc, line 21
Contains UI for diverse plugins provided by Rules.

Class

RulesRuleUI
Rule specific UI.

Code

public function __construct(FacesExtendable $object) {
  parent::__construct($object);
  $this->rule = $object;
  $this->conditions = $this->rule
    ->conditionContainer();
}