FieldLayoutTestHooks.php

Namespace

Drupal\field_layout_test\Hook

File

core/modules/field_layout/tests/modules/field_layout_test/src/Hook/FieldLayoutTestHooks.php

View source
<?php

declare (strict_types=1);
namespace Drupal\field_layout_test\Hook;

use Drupal\Core\Hook\Attribute\Hook;

/**
 * Hook implementations for field_layout_test.
 */
class FieldLayoutTestHooks {
    
    /**
     * Implements hook_layout_alter().
     */
    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',
                ],
            ]);
        }
    }

}

Classes

Title Deprecated Summary
FieldLayoutTestHooks Hook implementations for field_layout_test.

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