public function HelpSectionPluginBase::getTitle in Drupal 9
Same name and namespace in other branches
- 8 core/modules/help/src/Plugin/HelpSection/HelpSectionPluginBase.php \Drupal\help\Plugin\HelpSection\HelpSectionPluginBase::getTitle()
Returns the title of the help section.
Return value
string The title text, which could be a plain string or an object that can be cast to a string.
Overrides HelpSectionPluginInterface::getTitle
File
- core/
modules/ help/ src/ Plugin/ HelpSection/ HelpSectionPluginBase.php, line 23
Class
- HelpSectionPluginBase
- Provides a base class for help section plugins.
Namespace
Drupal\help\Plugin\HelpSectionCode
public function getTitle() {
return $this
->getPluginDefinition()['title'];
}