You are here

EmptyHelpSection.php in Drupal 8

File

core/modules/help/tests/modules/help_page_test/src/Plugin/HelpSection/EmptyHelpSection.php
View source
<?php

namespace Drupal\help_page_test\Plugin\HelpSection;

use Drupal\help\Plugin\HelpSection\HelpSectionPluginBase;

/**
 * Provides an empty section for the help page, for testing.
 *
 * @HelpSection(
 *   id = "empty_section",
 *   title = @Translation("Empty section"),
 *   description = @Translation("This description should appear."),
 * )
 */
class EmptyHelpSection extends HelpSectionPluginBase {

  /**
   * {@inheritdoc}
   */
  public function listTopics() {
    return [];
  }

}

Classes

Namesort descending Description
EmptyHelpSection Provides an empty section for the help page, for testing.