Version 1
[yaffs-website] / web / core / modules / field_layout / tests / modules / field_layout_test / field_layout_test.module
1 <?php
2
3 /**
4  * @file
5  * Contains hook implementations for field_layout_test.
6  */
7
8 /**
9  * Implements hook_layout_alter().
10  */
11 function field_layout_test_layout_alter(&$definitions) {
12   /** @var \Drupal\Core\Layout\LayoutDefinition[] $definitions */
13   if (\Drupal::state()->get('field_layout_test.alter_regions') && isset($definitions['layout_onecol'])) {
14     $definitions['layout_onecol']->setRegions(['foo' => ['label' => 'Foo']]);
15   }
16 }