class TwigDebugSensorPlugin in Monitoring 8
Monitors the twig debug settings.
Plugin annotation
@SensorPlugin(
id = "twig_debug_mode",
label = @Translation("Twig debug mode"),
description = @Translation("Verifies that twig debug settings are disabled."),
addable = FALSE,
)
Hierarchy
- class \Drupal\monitoring\SensorPlugin\SensorPluginBase implements SensorPluginInterface uses MessengerTrait, StringTranslationTrait
- class \Drupal\monitoring\Plugin\monitoring\SensorPlugin\TwigDebugSensorPlugin
Expanded class hierarchy of TwigDebugSensorPlugin
File
- src/
Plugin/ monitoring/ SensorPlugin/ TwigDebugSensorPlugin.php, line 24 - Contains \Drupal\monitoring\Plugin\monitoring\SensorPlugin\TwigDebugSensorPlugin.
Namespace
Drupal\monitoring\Plugin\monitoring\SensorPluginView source
class TwigDebugSensorPlugin extends SensorPluginBase {
/**
* Holds the container instance.
*
* @var \Symfony\Component\DependencyInjection\ContainerInterface
*/
protected $container;
/**
* {@inheritdoc}
*/
public function __construct(SensorConfig $sensor_config, $plugin_id, $plugin_definition, ContainerInterface $container) {
parent::__construct($sensor_config, $plugin_id, $plugin_definition, $container);
$this->container = $container;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, SensorConfig $sensor_config, $plugin_id, $plugin_definition) {
return new static($sensor_config, $plugin_id, $plugin_definition, $container);
}
/**
* {@inheritdoc}
*/
public function runSensor(SensorResultInterface $result) {
$twig_config = $this->container
->getParameter('twig.config');
$result
->setStatus(SensorResultInterface::STATUS_OK);
if (!empty($twig_config['debug'])) {
$result
->setStatus(SensorResultInterface::STATUS_WARNING);
$result
->addStatusMessage('Twig debug mode is enabled');
}
if (isset($twig_config['cache']) && !$twig_config['cache']) {
$result
->setStatus(SensorResultInterface::STATUS_WARNING);
$result
->addStatusMessage('Twig cache disabled');
}
if (!empty($twig_config['auto_reload'])) {
$result
->setStatus(SensorResultInterface::STATUS_WARNING);
$result
->addStatusMessage('Automatic recompilation of Twig templates enabled');
}
$sensor_status = $result
->getStatus();
if ($sensor_status == SensorResultInterface::STATUS_OK) {
$result
->addStatusMessage('Optimal configuration');
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
MessengerTrait:: |
protected | property | The messenger. | 29 |
MessengerTrait:: |
public | function | Gets the messenger. | 29 |
MessengerTrait:: |
public | function | Sets the messenger. | |
SensorPluginBase:: |
protected | property | Allows plugins to control if the value type can be configured. | 6 |
SensorPluginBase:: |
protected | property | The plugin implementation definition. | |
SensorPluginBase:: |
protected | property | The plugin_id. | |
SensorPluginBase:: |
protected | property | Current sensor config object. | |
SensorPluginBase:: |
protected | property | ||
SensorPluginBase:: |
public | function |
Service setter. Overrides SensorPluginInterface:: |
|
SensorPluginBase:: |
public | function |
Form constructor. Overrides PluginFormInterface:: |
13 |
SensorPluginBase:: |
public | function |
Calculates dependencies for the configured plugin. Overrides SensorPluginInterface:: |
4 |
SensorPluginBase:: |
public | function |
Configurable value type. Overrides SensorPluginInterface:: |
|
SensorPluginBase:: |
public | function |
Default configuration for a sensor. Overrides SensorPluginInterface:: |
8 |
SensorPluginBase:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
|
SensorPluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
SensorPluginBase:: |
public | function |
Gets sensor name (not the label). Overrides SensorPluginInterface:: |
|
SensorPluginBase:: |
public | function |
@todo: Replace with injection Overrides SensorPluginInterface:: |
|
SensorPluginBase:: |
public | function |
Determines if sensor is enabled. Overrides SensorPluginInterface:: |
|
SensorPluginBase:: |
public | function |
Form submission handler. Overrides PluginFormInterface:: |
3 |
SensorPluginBase:: |
public | function |
Form validation handler. Overrides PluginFormInterface:: |
2 |
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. | |
TwigDebugSensorPlugin:: |
protected | property | Holds the container instance. | |
TwigDebugSensorPlugin:: |
public static | function |
Creates an instance of the sensor with config. Overrides SensorPluginBase:: |
|
TwigDebugSensorPlugin:: |
public | function |
Runs the sensor, updating $sensor_result. Overrides SensorPluginInterface:: |
|
TwigDebugSensorPlugin:: |
public | function |
Instantiates a sensor object. Overrides SensorPluginBase:: |