AlwaysErrorDiagnosticCheck.php in Purge 8.3
File
tests/modules/purge_check_error_test/src/Plugin/Purge/DiagnosticCheck/AlwaysErrorDiagnosticCheck.phpView source
<?php
namespace Drupal\purge_check_error_test\Plugin\Purge\DiagnosticCheck;
use Drupal\purge\Plugin\Purge\DiagnosticCheck\DiagnosticCheckBase;
use Drupal\purge\Plugin\Purge\DiagnosticCheck\DiagnosticCheckInterface;
/**
* Checks if there is a purger plugin that invalidates an external cache.
*
* @PurgeDiagnosticCheck(
* id = "alwayserror",
* title = @Translation("Always an error"),
* description = @Translation("A fake test to test the diagnostics api."),
* dependent_queue_plugins = {},
* dependent_purger_plugins = {}
* )
*/
class AlwaysErrorDiagnosticCheck extends DiagnosticCheckBase implements DiagnosticCheckInterface {
/**
* {@inheritdoc}
*/
public function run() {
$this->recommendation = $this
->t("This is an error for testing.");
return self::SEVERITY_ERROR;
}
}
Classes
Name | Description |
---|---|
AlwaysErrorDiagnosticCheck | Checks if there is a purger plugin that invalidates an external cache. |