FormElement.php 642 B

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