function config_perms_help in Custom Permissions 8.2
Same name and namespace in other branches
- 8 config_perms.module \config_perms_help()
Implements hook_help().
File
- ./
config_perms.module, line 13 - The Custom permissions .module file.
Code
function config_perms_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the config_perms module.
case 'help.page.config_perms':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Allows additional permissions to be created and managed through an administration form.') . '</p>';
return $output;
default:
}
}