c283c82d78753f25a8946bff6ecaacf27301683f
[yaffs-website] / web / core / modules / field_layout / tests / modules / field_layout_test / src / Plugin / Layout / TestLayoutContentFooter.php
1 <?php
2
3 namespace Drupal\field_layout_test\Plugin\Layout;
4
5 use Drupal\Core\Layout\LayoutDefault;
6
7 /**
8  * Provides an annotated layout plugin for field_layout tests.
9  *
10  * @Layout(
11  *   id = "test_layout_content_and_footer",
12  *   label = @Translation("Test plugin: Content and Footer"),
13  *   category = @Translation("Layout test"),
14  *   description = @Translation("Test layout"),
15  *   regions = {
16  *     "content" = {
17  *       "label" = @Translation("Content Region")
18  *     },
19  *     "footer" = {
20  *       "label" = @Translation("Footer Region")
21  *     }
22  *   },
23  * )
24  */
25 class TestLayoutContentFooter extends LayoutDefault {
26
27 }