public function LoopThroughFieldVariable::__construct in Business Rules 8
Same name and namespace in other branches
- 2.x src/Plugin/BusinessRulesAction/LoopThroughFieldVariable.php \Drupal\business_rules\Plugin\BusinessRulesAction\LoopThroughFieldVariable::__construct()
Constructs a \Drupal\Component\Plugin\PluginBase object.
Parameters
array $configuration: A configuration array containing information about the plugin instance.
string $plugin_id: The plugin_id for the plugin instance.
mixed $plugin_definition: The plugin implementation definition.
Overrides BusinessRulesItemPluginBase::__construct
File
- src/
Plugin/ BusinessRulesAction/ LoopThroughFieldVariable.php, line 54
Class
- LoopThroughFieldVariable
- Class LoopThroughFieldVariable.
Namespace
Drupal\business_rules\Plugin\BusinessRulesActionCode
public function __construct(array $configuration = [], $plugin_id = 'loop_through_view_result', $plugin_definition = []) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->entityTypeManager = $this->util->container
->get('entity_type.manager');
}