TypedDataStringBlock.php

Same filename in other branches
  1. 9 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\ContextAwarePluginBase;

/**
 * Implementation of a String TypedData contextual block plugin used by Plugin
 * API context test.
 *
 * @see \Drupal\plugin_test\Plugin\MockBlockManager
 */
class TypedDataStringBlock extends ContextAwarePluginBase {
    public function getTitle() {
        return $this->getContextValue('string');
    }

}

Classes

Title Deprecated Summary
TypedDataStringBlock Implementation of a String TypedData contextual block plugin used by Plugin API context test.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.