You are here

function duplicate_role_help in Duplicate role 6

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

Implementation of hook_help().

File

./duplicate_role.module, line 12

Code

function duplicate_role_help($section = '') {
  $output = '';
  switch ($section) {
    case "admin/user/duplirole":
      $output = '<p>' . t("Duplicate an existing role with the same permissions for modules (and taxonomies, if exist taxonomy access) as the original ones") . '</p>';
      break;
  }
  return $output;
}