function rename_admin_paths_help in Rename Admin Paths 8
Same name and namespace in other branches
- 8.2 rename_admin_paths.module \rename_admin_paths_help()
- 7.2 rename_admin_paths.module \rename_admin_paths_help()
- 7 rename_admin_paths.module \rename_admin_paths_help()
Implements hook_help().
File
- ./
rename_admin_paths.module, line 15 - Allows users to rename admin paths.
Code
function rename_admin_paths_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.rename_admin_paths':
$output = '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Rename admin paths module allows users to rename admin paths (/admin/..) to /something/... and (/user/..) to /something_else/...') . '</p>';
$output .= '<h3>' . t('Uses') . '</h3>';
$output .= '<dl><dt>' . t('Rename admin paths') . '</dt>';
$output .= '<dd>' . t('Choose how to rename admin paths by using') . ' ' . Link::fromTextAndUrl(t('Path admin configuration'), Url::fromRoute('rename_admin_paths.admin'))
->toString() . '</dd>';
$output .= '</dl>';
return $output;
case 'rename_admin_paths.admin':
$output = '<p>' . t('Configure how to rename admin paths.') . '</p>';
return $output;
}
}