IHaveRuntimeContexts.php in Drupal 10
Same filename in this branch
Same filename and directory in other branches
Namespace
Drupal\layout_builder_test\Plugin\BlockFile
core/modules/layout_builder/tests/modules/layout_builder_test/src/Plugin/Block/IHaveRuntimeContexts.phpView source
<?php
namespace Drupal\layout_builder_test\Plugin\Block;
use Drupal\Core\Block\BlockBase;
/**
* Defines a class for a context-aware block.
*
* @Block(
* id = "i_have_runtime_contexts",
* admin_label = "Can I have runtime contexts",
* category = "Test",
* context_definitions = {
* "runtime_contexts" = @ContextDefinition("string", label = "Do you have runtime contexts")
* }
* )
*/
class IHaveRuntimeContexts extends BlockBase {
/**
* {@inheritdoc}
*/
public function build() {
return [
'#markup' => $this
->getContextValue('runtime_contexts'),
];
}
}
Classes
Name | Description |
---|---|
IHaveRuntimeContexts | Defines a class for a context-aware block. |