field_layout_test.module 437 B

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