function FieldLayoutTestHooks::layoutAlter

Implements hook_layout_alter().

File

core/modules/field_layout/tests/modules/field_layout_test/src/Hook/FieldLayoutTestHooks.php, line 17

Class

FieldLayoutTestHooks
Hook implementations for field_layout_test.

Namespace

Drupal\field_layout_test\Hook

Code

public function layoutAlter(&$definitions) {
    
    /** @var \Drupal\Core\Layout\LayoutDefinition[] $definitions */
    if (\Drupal::state()->get('field_layout_test.alter_regions') && isset($definitions['layout_onecol'])) {
        $definitions['layout_onecol']->setRegions([
            'foo' => [
                'label' => 'Foo',
            ],
        ]);
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.