MockComplexContextBlock.php in Drupal 9
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;
class MockComplexContextBlock extends PluginBase implements ContextAwarePluginInterface {
use ContextAwarePluginTrait;
public function getTitle() {
$user = $this
->getContextValue('user');
$node = $this
->getContextValue('node');
return $user
->label() . ' -- ' . $node
->label();
}
}