Version 1
[yaffs-website] / web / core / lib / Drupal / Core / Render / Annotation / RenderElement.php
1 <?php
2
3 namespace Drupal\Core\Render\Annotation;
4
5 use Drupal\Component\Annotation\PluginID;
6
7 /**
8  * Defines a render element plugin annotation object.
9  *
10  * See \Drupal\Core\Render\Element\ElementInterface for more information
11  * about render element plugins.
12  *
13  * Plugin Namespace: Element
14  *
15  * For a working example, see \Drupal\Core\Render\Element\Link.
16  *
17  * @see \Drupal\Core\Render\ElementInfoManager
18  * @see \Drupal\Core\Render\Element\ElementInterface
19  * @see \Drupal\Core\Render\Element\RenderElement
20  * @see \Drupal\Core\Render\Annotation\FormElement
21  * @see plugin_api
22  *
23  * @ingroup theme_render
24  *
25  * @Annotation
26  */
27 class RenderElement extends PluginID {
28
29 }