function libraries_ui_help in Libraries UI 8
Implements hook_help().
File
- ./
libraries_ui.module, line 24 - Contains libraries_ui.module..
Code
function libraries_ui_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the libraries_ui module.
case 'help.page.libraries_ui':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('This module will display all libraries information in your website') . '</p>';
return $output;
default:
}
}