class TestHelpTopicPlugin

Same name and namespace in other branches
  1. 11.x core/modules/help/tests/modules/help_topics_test/src/Plugin/HelpTopic/TestHelpTopicPlugin.php \Drupal\help_topics_test\Plugin\HelpTopic\TestHelpTopicPlugin

A fake help topic plugin for testing.

Hierarchy

Expanded class hierarchy of TestHelpTopicPlugin

1 string reference to 'TestHelpTopicPlugin'
help_topics_test.help_topics.yml in core/modules/help_topics/tests/modules/help_topics_test/help_topics_test.help_topics.yml
core/modules/help_topics/tests/modules/help_topics_test/help_topics_test.help_topics.yml

File

core/modules/help_topics/tests/modules/help_topics_test/src/Plugin/HelpTopic/TestHelpTopicPlugin.php, line 11

Namespace

Drupal\help_topics_test\Plugin\HelpTopic
View source
class TestHelpTopicPlugin extends HelpTopicPluginBase {
  
  /**
   * {@inheritdoc}
   */
  public function getBody() {
    return [
      '#type' => 'markup',
      '#markup' => $this->pluginDefinition['body'],
    ];
  }
  
  /**
   * {@inheritdoc}
   */
  public function getCacheContexts() {
    return [];
  }
  
  /**
   * {@inheritdoc}
   */
  public function getCacheTags() {
    return [
      'foobar',
    ];
  }
  
  /**
   * {@inheritdoc}
   */
  public function getCacheMaxAge() {
    return Cache::PERMANENT;
  }

}

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