FrontendEnvironment.php in Build Hooks 8.2
Same filename in this branch
Same filename and directory in other branches
Namespace
Drupal\build_hooks\AnnotationFile
src/Annotation/FrontendEnvironment.phpView source
<?php
namespace Drupal\build_hooks\Annotation;
use Drupal\Component\Annotation\Plugin;
/**
* Defines a Frontend environment item annotation object.
*
* @see \Drupal\build_hooks\Plugin\FrontendEnvironmentManager
* @see plugin_api
*
* @Annotation
*/
class FrontendEnvironment 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 label of the plugin.
*
* @var \Drupal\Core\Annotation\Translation
*
* @ingroup plugin_translatable
*/
public $description;
}
Classes
Name | Description |
---|---|
FrontendEnvironment | Defines a Frontend environment item annotation object. |