Version 1
[yaffs-website] / web / core / modules / field_layout / tests / modules / field_layout_test / src / Plugin / Layout / TestLayoutContentFooter.php
diff --git a/web/core/modules/field_layout/tests/modules/field_layout_test/src/Plugin/Layout/TestLayoutContentFooter.php b/web/core/modules/field_layout/tests/modules/field_layout_test/src/Plugin/Layout/TestLayoutContentFooter.php
new file mode 100644 (file)
index 0000000..c283c82
--- /dev/null
@@ -0,0 +1,27 @@
+<?php
+
+namespace Drupal\field_layout_test\Plugin\Layout;
+
+use Drupal\Core\Layout\LayoutDefault;
+
+/**
+ * Provides an annotated layout plugin for field_layout tests.
+ *
+ * @Layout(
+ *   id = "test_layout_content_and_footer",
+ *   label = @Translation("Test plugin: Content and Footer"),
+ *   category = @Translation("Layout test"),
+ *   description = @Translation("Test layout"),
+ *   regions = {
+ *     "content" = {
+ *       "label" = @Translation("Content Region")
+ *     },
+ *     "footer" = {
+ *       "label" = @Translation("Footer Region")
+ *     }
+ *   },
+ * )
+ */
+class TestLayoutContentFooter extends LayoutDefault {
+
+}