Version 1
[yaffs-website] / web / core / lib / Drupal / Core / Render / Annotation / RenderElement.php
diff --git a/web/core/lib/Drupal/Core/Render/Annotation/RenderElement.php b/web/core/lib/Drupal/Core/Render/Annotation/RenderElement.php
new file mode 100644 (file)
index 0000000..caf17ae
--- /dev/null
@@ -0,0 +1,29 @@
+<?php
+
+namespace Drupal\Core\Render\Annotation;
+
+use Drupal\Component\Annotation\PluginID;
+
+/**
+ * Defines a render element plugin annotation object.
+ *
+ * See \Drupal\Core\Render\Element\ElementInterface for more information
+ * about render element plugins.
+ *
+ * Plugin Namespace: Element
+ *
+ * For a working example, see \Drupal\Core\Render\Element\Link.
+ *
+ * @see \Drupal\Core\Render\ElementInfoManager
+ * @see \Drupal\Core\Render\Element\ElementInterface
+ * @see \Drupal\Core\Render\Element\RenderElement
+ * @see \Drupal\Core\Render\Annotation\FormElement
+ * @see plugin_api
+ *
+ * @ingroup theme_render
+ *
+ * @Annotation
+ */
+class RenderElement extends PluginID {
+
+}