function duplicate_role_help in Duplicate role 6.2
Same name and namespace in other branches
- 6 duplicate_role.module \duplicate_role_help()
- 7 duplicate_role.module \duplicate_role_help()
Implements hook_help().
File
- ./
duplicate_role.module, line 7
Code
function duplicate_role_help($path, $arg) {
$output = '';
switch ($path) {
case "admin/user/duplirole":
$output = '<p>' . t("Duplicate an existing role with the same permissions for modules and taxonomies as the original ones") . '</p>';
break;
}
return $output;
}