class NodeContextTestBlock

Same name and namespace in other branches
  1. 11.x core/modules/node/tests/modules/node_block_test/src/Plugin/Block/NodeContextTestBlock.php \Drupal\node_block_test\Plugin\Block\NodeContextTestBlock
  2. 10 core/modules/node/tests/modules/node_block_test/src/Plugin/Block/NodeContextTestBlock.php \Drupal\node_block_test\Plugin\Block\NodeContextTestBlock

Provides a 'Node Context Test' block.

Plugin annotation


@Block(
  id = "node_block_test_context",
  label = @Translation("Node Context Test"),
  context_definitions = {
    "node" = @ContextDefinition("entity:node", label = @Translation("Node"))
  }
)

Hierarchy

Expanded class hierarchy of NodeContextTestBlock

File

core/modules/node/tests/modules/node_block_test/src/Plugin/Block/NodeContextTestBlock.php, line 18

Namespace

Drupal\node_block_test\Plugin\Block
View source
class NodeContextTestBlock extends BlockBase {
  
  /**
   * {@inheritdoc}
   */
  public function build() {
    /** @var \Drupal\node\NodeInterface $node */
    $node = $this->getContextValue('node');
    return [
      '#type' => 'inline_template',
      '#template' => 'Displaying node #{{ id }}, revision #{{ revision_id }}: {{ title }}',
      '#context' => [
        'id' => $node->id(),
        'revision_id' => $node->getRevisionId(),
        'title' => $node->label(),
      ],
    ];
  }

}

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