ConfigurationIgnorePlugin.php in Config Ignore Keys 8
Namespace
Drupal\config_ignore_keys\AnnotationFile
src/Annotation/ConfigurationIgnorePlugin.phpView source
<?php
namespace Drupal\config_ignore_keys\Annotation;
use Drupal\Component\Annotation\Plugin;
/**
* Configuration ignore key plugin.
*
* @Annotation
*
* @Attributes({
* @Attribute("id", required = true, type = "string"),
* @Attribute("description", required = false, type = "string"),
* })
*/
class ConfigurationIgnorePlugin extends Plugin {
/**
* The id of the plugin.
*
* @var string
*/
public $id;
/**
* The description for the plugin.
*
* @var string
*/
public $description;
}
Classes
Name | Description |
---|---|
ConfigurationIgnorePlugin | Configuration ignore key plugin. |