MockComplexContextBlock.php
Same filename in other branches
- 9 core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/mock_block/MockComplexContextBlock.php
- 8.9.x core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/mock_block/MockComplexContextBlock.php
- 10 core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/mock_block/MockComplexContextBlock.php
Namespace
Drupal\plugin_test\Plugin\plugin_test\mock_blockFile
-
core/
modules/ system/ tests/ modules/ plugin_test/ src/ Plugin/ plugin_test/ mock_block/ MockComplexContextBlock.php
View source
<?php
declare (strict_types=1);
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
Title | Deprecated | Summary |
---|---|---|
MockComplexContextBlock | Implementation of a complex context plugin used by Plugin API context tests. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.