WordfilterProcess.php in Wordfilter 8.2
Namespace
Drupal\wordfilter\AnnotationFile
src/Annotation/WordfilterProcess.phpView source
<?php
namespace Drupal\wordfilter\Annotation;
use Drupal\Component\Annotation\Plugin;
/**
* Defines a Wordfilter Process item annotation object.
*
* @see \Drupal\wordfilter\Plugin\WordfilterProcessManager
* @see plugin_api
*
* @Annotation
*/
class WordfilterProcess extends Plugin {
/**
* The plugin ID.
*
* @var string
*/
public $id;
/**
* The label of the plugin.
*
* @var \Drupal\Core\Annotation\Translation
*
* @ingroup plugin_translatable
*/
public $label;
/**
* The description of the plugin.
*
* @var \Drupal\Core\Annotation\Translation
*
* @ingroup plugin_translatable
*/
public $description;
}
Classes
Name![]() |
Description |
---|---|
WordfilterProcess | Defines a Wordfilter Process item annotation object. |