Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
0 / 0 |
CRAP | |
100.00% |
0 / 0 |
FormElement | |
100.00% |
1 / 1 |
|
100.00% |
0 / 0 |
0 | |
100.00% |
0 / 0 |
<?php | |
/** | |
* @file | |
* Contains \Drupal\Core\Render\Annotation\FormElement. | |
*/ | |
namespace Drupal\Core\Render\Annotation; | |
/** | |
* Defines a form element plugin annotation object. | |
* | |
* See \Drupal\Core\Render\Element\FormElementInterface for more information | |
* about form element plugins. | |
* | |
* Plugin Namespace: Element | |
* | |
* For a working example, see \Drupal\Core\Render\Element\Textfield. | |
* | |
* @see \Drupal\Core\Render\ElementInfoManager | |
* @see \Drupal\Core\Render\Element\FormElementInterface | |
* @see \Drupal\Core\Render\Element\FormElement | |
* @see \Drupal\Core\Render\Annotation\RenderElement | |
* @see plugin_api | |
* | |
* @ingroup theme_render | |
* | |
* @Annotation | |
*/ | |
class FormElement extends RenderElement { | |
} |