TestContextAwareUnsatisfiedBlock.php in Drupal 9
Same filename and directory in other branches
Namespace
Drupal\block_test\Plugin\BlockFile
core/modules/block/tests/modules/block_test/src/Plugin/Block/TestContextAwareUnsatisfiedBlock.phpView source
<?php
namespace Drupal\block_test\Plugin\Block;
use Drupal\Core\Block\BlockBase;
/**
* Provides a context-aware block.
*
* @Block(
* id = "test_context_aware_unsatisfied",
* admin_label = @Translation("Test context-aware unsatisfied block"),
* context_definitions = {
* "user" = @ContextDefinition("entity:foobar")
* }
* )
*/
class TestContextAwareUnsatisfiedBlock extends BlockBase {
/**
* {@inheritdoc}
*/
public function build() {
return [
'#markup' => 'test',
];
}
}
Classes
Name | Description |
---|---|
TestContextAwareUnsatisfiedBlock | Provides a context-aware block. |