rules-8.x-3.x-dev/tests/modules/rules_test/src/Plugin/RulesAction/TestDebugLogAction.php
tests/modules/rules_test/src/Plugin/RulesAction/TestDebugLogAction.php
<?php
declare(strict_types=1);
namespace Drupal\rules_test\Plugin\RulesAction;
use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
use Drupal\Core\StringTranslation\TranslatableMarkup;
use Drupal\rules\Context\ContextDefinition;
use Drupal\rules\Core\Attribute\RulesAction;
use Drupal\rules\Core\RulesActionBase;
use Drupal\rules\Logger\RulesDebugLoggerChannel;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* Provides an action writing an error to the Rules debug logger channel.
*
* @RulesAction(
* id = "rules_test_debug_log",
* label = @Translation("Test action debug logging"),
* category = @Translation("Tests"),
* context_definitions = {
* "message" = @ContextDefinition("string",
* label = @Translation("Message to log"),
* required = FALSE
* ),
* }
* )
*/
#[RulesAction(
id: "rules_test_debug_log",
label: new TranslatableMarkup("Test action debug logging"),
category: new TranslatableMarkup("Tests"),
context_definitions: [
"message" => new ContextDefinition(
data_type: "string",
label: new TranslatableMarkup("Message to log"),
required: FALSE
),
]
)]
class TestDebugLogAction extends RulesActionBase implements ContainerFactoryPluginInterface {
/**
* Rules debug logger instance.
*
* @var \Drupal\rules\Logger\RulesDebugLoggerChannel
*/
protected $logger;
/**
* Constructs a TestDebugLogAction object.
*
* @param array $configuration
* A configuration array containing information about the plugin instance.
* @param string $plugin_id
* The plugin ID for the plugin instance.
* @param mixed $plugin_definition
* The plugin implementation definition.
* @param \Drupal\rules\Logger\RulesDebugLoggerChannel $logger
* Rules debug logger object.
*/
public function __construct(array $configuration, $plugin_id, $plugin_definition, RulesDebugLoggerChannel $logger) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->logger = $logger;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static(
$configuration,
$plugin_id,
$plugin_definition,
$container->get('logger.channel.rules_debug')
);
}
/**
* Writes an error message to the debug log.
*
* @param string $message
* Message string that should be logged. Defaults to "action called".
*/
protected function doExecute(?string $message = NULL) {
if (empty($message)) {
$message = 'action called';
}
$this->logger->error($message);
}
}
