public function EventTypeRuleComponentEdit::__construct in RNG - Events and Registrations 3.x
Same name and namespace in other branches
- 8.2 src/Form/EventTypeRuleComponentEdit.php \Drupal\rng\Form\EventTypeRuleComponentEdit::__construct()
- 8 src/Form/EventTypeRuleComponentEdit.php \Drupal\rng\Form\EventTypeRuleComponentEdit::__construct()
Constructs a new MessageActionForm object.
Parameters
\Drupal\Core\Action\ActionManager $action_manager: The action manager.
\Drupal\Core\Condition\ConditionManager $condition_manager: The condition manager.
\Drupal\rng\EventManagerInterface $event_manager: The RNG event manager.
File
- src/
Form/ EventTypeRuleComponentEdit.php, line 77
Class
- EventTypeRuleComponentEdit
- Configure event settings.
Namespace
Drupal\rng\FormCode
public function __construct(ActionManager $action_manager, ConditionManager $condition_manager, EventManagerInterface $event_manager) {
$this->actionManager = $action_manager;
$this->conditionManager = $condition_manager;
$this->eventManager = $event_manager;
}