You are here

AProcessor.php in Purge 8.3

File

tests/modules/purge_processor_test/src/Plugin/Purge/Processor/AProcessor.php
View 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 A.
 *
 * @PurgeProcessor(
 *   id = "a",
 *   label = @Translation("Processor A"),
 *   description = @Translation("Test processor A."),
 *   enable_by_default = true,
 *   configform = "",
 * )
 */
class AProcessor extends ProcessorBase implements ProcessorInterface {

}

Classes

Namesort descending Description
AProcessor Test processor A.