class CleanerWatchdogClearEventSubscriber in Cleaner 8.2
Class CleanerWatchdogClearEventSubscriber.
@package Drupal\cleaner\EventSubscriber
Hierarchy
- class \Drupal\cleaner\EventSubscriber\CleanerWatchdogClearEventSubscriber implements \Symfony\Component\EventDispatcher\EventSubscriberInterface, ContainerInjectionInterface
Expanded class hierarchy of CleanerWatchdogClearEventSubscriber
1 file declares its use of CleanerWatchdogClearEventSubscriber
- CleanerKernelTests.php in tests/
src/ Kernel/ CleanerKernelTests.php
1 string reference to 'CleanerWatchdogClearEventSubscriber'
1 service uses CleanerWatchdogClearEventSubscriber
File
- src/
EventSubscriber/ CleanerWatchdogClearEventSubscriber.php, line 18
Namespace
Drupal\cleaner\EventSubscriberView source
class CleanerWatchdogClearEventSubscriber implements EventSubscriberInterface, ContainerInjectionInterface {
/**
* Database connection.
*
* @var \Drupal\Core\Database\Connection
*/
protected $database;
/**
* Config object.
*
* @var \Drupal\Core\Config\ImmutableConfig
*/
protected $config;
/**
* Logger channel.
*
* @var \Drupal\Core\Logger\LoggerChannelInterface
*/
protected $loggerChannel;
/**
* {@inheritdoc}
*/
public static function getSubscribedEvents() {
$events[CleanerRunEvent::CLEANER_RUN][] = [
'clearWatchdog',
100,
];
return $events;
}
/**
* CleanerWatchdogClearEventSubscriber constructor.
*
* @param \Drupal\Core\Database\Connection $database
* Database connection.
* @param \Drupal\Core\Config\ConfigFactoryInterface $config_factory
* Config factory.
* @param \Drupal\Core\Logger\LoggerChannelFactoryInterface $logger_channel_factory
* Logger channel factory.
*/
public function __construct(Connection $database, ConfigFactoryInterface $config_factory, LoggerChannelFactoryInterface $logger_channel_factory) {
$this->database = $database;
$this->config = $config_factory
->get('cleaner.settings');
$this->loggerChannel = $logger_channel_factory
->get('cleaner');
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
return new static($container
->get('database'), $container
->get('config.factory'), $container
->get('logger.factory'));
}
/**
* Cleaner tables clearing.
*/
public function clearWatchdog() {
if ($this->config
->get('cleaner_empty_watchdog')) {
if (!$this->database
->schema()
->tableExists('watchdog')) {
$this->loggerChannel
->error("Something going wrong - watchdog logs cannot be cleared.");
}
else {
$this->database
->query('TRUNCATE {watchdog}')
->execute();
$this->loggerChannel
->info('Watchdog logs has been successfully cleared.');
}
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
CleanerWatchdogClearEventSubscriber:: |
protected | property | Config object. | |
CleanerWatchdogClearEventSubscriber:: |
protected | property | Database connection. | |
CleanerWatchdogClearEventSubscriber:: |
protected | property | Logger channel. | |
CleanerWatchdogClearEventSubscriber:: |
public | function | Cleaner tables clearing. | |
CleanerWatchdogClearEventSubscriber:: |
public static | function |
Instantiates a new instance of this class. Overrides ContainerInjectionInterface:: |
|
CleanerWatchdogClearEventSubscriber:: |
public static | function | Returns an array of event names this subscriber wants to listen to. | |
CleanerWatchdogClearEventSubscriber:: |
public | function | CleanerWatchdogClearEventSubscriber constructor. |