You are here

WithFormProcessor.php in Purge 8.3

File

tests/modules/purge_processor_test/src/Plugin/Purge/Processor/WithFormProcessor.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 with a configuration form.
 *
 * @PurgeProcessor(
 *   id = "withform",
 *   label = @Translation("Processor with form"),
 *   description = @Translation("Test processor with a configuration form."),
 *   enable_by_default = false,
 *   configform = "\Drupal\purge_processor_test\Form\ProcessorConfigForm",
 * )
 */
class WithFormProcessor extends ProcessorBase implements ProcessorInterface {

}

Classes

Namesort descending Description
WithFormProcessor Test processor with a configuration form.