Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. HelpSection.php

class HelpSection

Same name in this branch
  1. 11.1.x core/modules/help/src/Attribute/HelpSection.php \Drupal\help\Attribute\HelpSection

Defines a Plugin annotation object for help page section plugins.

Plugin Namespace: Plugin\HelpSection

For a working example, see \Drupal\help\Plugin\HelpSection\HookHelpSection.

Hierarchy

  • class \Drupal\Component\Annotation\Plugin implements \Drupal\Component\Annotation\AnnotationInterface
    • class \Drupal\help\Annotation\HelpSection extends \Drupal\Component\Annotation\Plugin

Expanded class hierarchy of HelpSection

See also

\Drupal\help\HelpSectionPluginInterface

\Drupal\help\Plugin\HelpSection\HelpSectionPluginBase

\Drupal\help\HelpSectionManager

hook_help_section_info_alter()

Plugin API

Related topics

Annotations
Annotations for class discovery and metadata description.

File

core/modules/help/src/Annotation/HelpSection.php, line 22

Namespace

Drupal\help\Annotation
View source
class HelpSection extends Plugin {
    
    /**
     * The plugin ID.
     *
     * @var string
     */
    public $id;
    
    /**
     * The text to use as the title of the help page section.
     *
     * @var \Drupal\Core\Annotation\Translation
     *
     * @ingroup plugin_translatable
     */
    public $title;
    
    /**
     * The description of the help page section.
     *
     * @var \Drupal\Core\Annotation\Translation
     *
     * @ingroup plugin_translatable
     */
    public $description;
    
    /**
     * The (optional) permission needed to view the help section.
     *
     * Only set if this section needs its own permission, beyond the generic
     * 'access help pages' permission needed to see the /admin/help
     * page itself.
     *
     * @var string
     */
    public $permission = '';
    
    /**
     * An optional weight for the help section.
     *
     * The sections will be ordered by this weight on the help page.
     *
     * @var int
     */
    public $weight = 0;

}

Members

Title Sort descending Modifiers Object type Summary Overriden Title Overrides
HelpSection::$description public property The description of the help page section.
HelpSection::$id public property The plugin ID.
HelpSection::$permission public property The (optional) permission needed to view the help section.
HelpSection::$title public property The text to use as the title of the help page section.
HelpSection::$weight public property An optional weight for the help section.
Plugin::$definition protected property The plugin definition read from the class annotation. 1
Plugin::get public function Gets the value of an annotation. Overrides AnnotationInterface::get 5
Plugin::getClass public function Gets the class of the annotated class. Overrides AnnotationInterface::getClass 1
Plugin::getId public function Gets the unique ID for this annotated class. Overrides AnnotationInterface::getId
Plugin::getProvider public function Gets the name of the provider of the annotated class. Overrides AnnotationInterface::getProvider 1
Plugin::parse protected function Parses an annotation into its definition.
Plugin::setClass public function Sets the class of the annotated class. Overrides AnnotationInterface::setClass 1
Plugin::setProvider public function Sets the name of the provider of the annotated class. Overrides AnnotationInterface::setProvider
Plugin::__construct public function Constructs a Plugin object. 3
RSS feed
Powered by Drupal