TypedDataStringBlock.php

Same filename and directory in other branches
  1. 8.9.x core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/mock_block/TypedDataStringBlock.php
  2. 10 core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/mock_block/TypedDataStringBlock.php
  3. 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_block

File

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.