function SendAccountEmail::__construct
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.
File
-
src/
Plugin/ RulesAction/ SendAccountEmail.php, line 52
Class
- SendAccountEmail
- Provides a 'Send account email' action.
Namespace
Drupal\rules\Plugin\RulesActionCode
public function __construct(array $configuration, $plugin_id, $plugin_definition, LoggerChannelInterface $logger) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->logger = $logger;
}