BProcessor.php in Purge 8.3
File
tests/modules/purge_processor_test/src/Plugin/Purge/Processor/BProcessor.phpView source
<?php
namespace Drupal\purge_processor_test\Plugin\Purge\Processor;
use Drupal\purge\Plugin\Purge\Processor\ProcessorBase;
use Drupal\purge\Plugin\Purge\Processor\ProcessorInterface;
/**
* Test processor B.
*
* @PurgeProcessor(
* id = "b",
* label = @Translation("Processor B"),
* description = @Translation("Test processor B."),
* enable_by_default = true,
* configform = "",
* )
*/
class BProcessor extends ProcessorBase implements ProcessorInterface {
}
Classes
Name | Description |
---|---|
BProcessor | Test processor B. |