IHaveRuntimeContexts.php
Same filename in this branch
Same filename in other branches
- 9 core/modules/layout_builder/tests/modules/layout_builder_test/src/ContextProvider/IHaveRuntimeContexts.php
- 9 core/modules/layout_builder/tests/modules/layout_builder_test/src/Plugin/Block/IHaveRuntimeContexts.php
- 10 core/modules/layout_builder/tests/modules/layout_builder_test/src/ContextProvider/IHaveRuntimeContexts.php
- 10 core/modules/layout_builder/tests/modules/layout_builder_test/src/Plugin/Block/IHaveRuntimeContexts.php
Namespace
Drupal\layout_builder_test\Plugin\BlockFile
-
core/
modules/ layout_builder/ tests/ modules/ layout_builder_test/ src/ Plugin/ Block/ IHaveRuntimeContexts.php
View source
<?php
declare (strict_types=1);
namespace Drupal\layout_builder_test\Plugin\Block;
use Drupal\Core\Block\Attribute\Block;
use Drupal\Core\Block\BlockBase;
use Drupal\Core\Plugin\Context\ContextDefinition;
use Drupal\Core\StringTranslation\TranslatableMarkup;
/**
* Defines a class for a context-aware block.
*/
class IHaveRuntimeContexts extends BlockBase {
/**
* {@inheritdoc}
*/
public function build() {
return [
'#markup' => $this->getContextValue('runtime_contexts'),
];
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
IHaveRuntimeContexts | Defines a class for a context-aware block. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.