function allowed_languages_help in Allowed Languages 8
Same name and namespace in other branches
- 2.x allowed_languages.module \allowed_languages_help()
Implements hook_help().
File
- ./
allowed_languages.module, line 22 - Contains allowed_languages.module.
Code
function allowed_languages_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the allowed_languages module.
case 'help.page.allowed_languages':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Lets you limit the languages a user may use when managing content.') . '</p>';
return $output;
}
}