You are here

function duplicate_role_help in Duplicate role 7

Same name and namespace in other branches
  1. 6.2 duplicate_role.module \duplicate_role_help()
  2. 6 duplicate_role.module \duplicate_role_help()

Implements hook_help().

File

./duplicate_role.module, line 6

Code

function duplicate_role_help($path, $arg) {
  $output = '';
  switch ($path) {
    case "admin/people/duplicate-role":
      $output = '<p>' . t("Duplicate an existing role with the same permissions for modules and taxonomies as the original ones") . '</p>';
      break;
  }
  return $output;
}