You are here

public function SendAccountEmail::__construct in Rules 8.3

Constructs a SendAccountEmail 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.

\Drupal\Core\Logger\LoggerChannelInterface $logger: The rules logger service.

Overrides ContextAwarePluginBase::__construct

File

src/Plugin/RulesAction/SendAccountEmail.php, line 51

Class

SendAccountEmail
Provides a 'Send account email' action.

Namespace

Drupal\rules\Plugin\RulesAction

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, LoggerChannelInterface $logger) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this->logger = $logger;
}