function shortcut_per_role_help in Shortcut per Role 7
Implement hook_help().
File
- ./
shortcut_per_role.module, line 22 - Allows users to manage customizable lists of shortcut links.
Code
function shortcut_per_role_help($path, $arg) {
switch ($path) {
case 'admin/help#shortcut_per_role':
$output = '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Assign the default shortcut set per role') . '</p>';
return $output;
}
}