function HelpTopicPluginBase::toUrl

Same name and namespace in other branches
  1. 9 core/modules/help_topics/src/HelpTopicPluginBase.php \Drupal\help_topics\HelpTopicPluginBase::toUrl()
  2. 8.9.x core/modules/help_topics/src/HelpTopicPluginBase.php \Drupal\help_topics\HelpTopicPluginBase::toUrl()
  3. 11.x core/modules/help/src/HelpTopicPluginBase.php \Drupal\help\HelpTopicPluginBase::toUrl()

Returns the URL for viewing the help topic.

Parameters

array $options: (optional) See \Drupal\Core\Routing\UrlGeneratorInterface::generateFromRoute() for the available options.

Return value

\Drupal\Core\Url A URL object containing the URL for viewing the help topic.

Overrides HelpTopicPluginInterface::toUrl

File

core/modules/help/src/HelpTopicPluginBase.php, line 48

Class

HelpTopicPluginBase
Base class for help topic plugins.

Namespace

Drupal\help

Code

public function toUrl(array $options = []) {
    return Url::fromRoute('help.help_topic', [
        'id' => $this->getPluginId(),
    ], $options);
}

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