TypedDataStringBlock.php
Same filename in other branches
- 9 core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/mock_block/TypedDataStringBlock.php
- 8.9.x core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/mock_block/TypedDataStringBlock.php
- 11.x core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/mock_block/TypedDataStringBlock.php
Namespace
Drupal\plugin_test\Plugin\plugin_test\mock_blockFile
-
core/
modules/ system/ tests/ modules/ plugin_test/ src/ Plugin/ plugin_test/ mock_block/ TypedDataStringBlock.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;
/**
* Implements a String TypedData contextual block plugin.
*
* @see \Drupal\plugin_test\Plugin\MockBlockManager
* @see \Drupal\KernelTests\Core\Plugin\PluginTestBase
*/
class TypedDataStringBlock extends PluginBase implements ContextAwarePluginInterface {
use ContextAwarePluginTrait;
public function getTitle() {
return $this->getContextValue('string');
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
TypedDataStringBlock | Implements a String TypedData contextual block plugin. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.