Same filename and directory in other branches
  1. 8.9.x core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/mock_block/MockComplexContextBlock.php
  2. 9 core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/mock_block/MockComplexContextBlock.php

Namespace

Drupal\plugin_test\Plugin\plugin_test\mock_block

File

core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/mock_block/MockComplexContextBlock.php
View source
<?php

namespace Drupal\plugin_test\Plugin\plugin_test\mock_block;

use Drupal\Core\Plugin\ContextAwarePluginInterface;
use Drupal\Core\Plugin\ContextAwarePluginTrait;
use Drupal\Core\Plugin\PluginBase;

/**
 * Implementation of a complex context plugin used by Plugin API context tests.
 *
 * @see \Drupal\plugin_test\Plugin\MockBlockManager
 */
class MockComplexContextBlock extends PluginBase implements ContextAwarePluginInterface {
  use ContextAwarePluginTrait;
  public function getTitle() {
    $user = $this
      ->getContextValue('user');
    $node = $this
      ->getContextValue('node');
    return $user
      ->label() . ' -- ' . $node
      ->label();
  }

}

Classes

Namesort descending Description
MockComplexContextBlock Implementation of a complex context plugin used by Plugin API context tests.