
| Current Path : /var/www/html/rocksensor1/web/core/modules/help_topics/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/rocksensor1/web/core/modules/help_topics/help_topics.module |
<?php
/**
* @file
* Displays help topics provided by modules and themes.
*/
use Drupal\Core\Routing\RouteMatchInterface;
use Drupal\Core\Url;
/**
* Implements hook_help().
*/
function help_topics_help($route_name, RouteMatchInterface $route_match) {
if ($route_name == 'help.page.help_topics') {
$help_home = Url::fromRoute('help.main')->toString();
$output = '<h2>' . t('About') . '</h2>';
$output .= '<p>' . t('The Help Topics module has been moved to the Help module.') . '</p>';
$output .= '<p>' . t('See the <a href=":help_page">Help page</a> to view topics.', [
':help_page' => $help_home,
]) . '</p>';
return ['#markup' => $output];
}
}