b47d46b4fca76d80c55949385aa2f41ceb21b5e5
[yaffs-website] / TypedDataStringBlock.php
1 <?php
2
3 namespace Drupal\plugin_test\Plugin\plugin_test\mock_block;
4
5 use Drupal\Core\Plugin\ContextAwarePluginBase;
6
7 /**
8  * Implementation of a String TypedData contextual block plugin used by Plugin
9  * API context test.
10  *
11  * @see \Drupal\plugin_test\Plugin\MockBlockManager
12  */
13 class TypedDataStringBlock extends ContextAwarePluginBase {
14
15   public function getTitle() {
16     return $this->getContextValue('string');
17   }
18
19 }