MessagePurge.php in Message 8
Namespace
Drupal\message\AnnotationFile
src/Annotation/MessagePurge.phpView source
<?php
namespace Drupal\message\Annotation;
use Drupal\Component\Annotation\Plugin;
/**
* Defines a MessagePurge annotation object.
*
* @Annotation
*/
class MessagePurge extends Plugin {
/**
* The plugin ID.
*
* @var string
*/
public $id;
/**
* The human-readable name of the plugin.
*
* @var \Drupal\Core\Annotation\Translation
*
* @ingroup plugin_translatable
*/
public $label;
/**
* A short description of the plugin.
*
* @var \Drupal\Core\Annotation\Translation
*
* @ingroup plugin_translatable
*/
public $description;
}
Classes
Name | Description |
---|---|
MessagePurge | Defines a MessagePurge annotation object. |