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