You are here

public function EntityEmptyVariable::__construct in Business Rules 8

Same name and namespace in other branches
  1. 2.x src/Plugin/BusinessRulesVariable/EntityEmptyVariable.php \Drupal\business_rules\Plugin\BusinessRulesVariable\EntityEmptyVariable::__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/BusinessRulesVariable/EntityEmptyVariable.php, line 47

Class

EntityEmptyVariable
Class EntityEmptyVariable.

Namespace

Drupal\business_rules\Plugin\BusinessRulesVariable

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this->entityFieldManager = $this->util->container
    ->get('entity_field.manager');
  $this->fieldTypePluginManager = $this->util->container
    ->get('plugin.manager.field.field_type');
}