function student_search_perm

6.x student_search.module student_search_perm()
4.x student_search.module student_search_perm()
5.x student_search.module student_search_perm()

Implementation of hook_perm

Return value

unknown

File

modules/student_search/student_search.module, line 253

Code

function student_search_perm() {
  return array(
    "administer_student_search" => array(
      "title" => t("Administer Student Search"),
      "description" => t("Configure settings for the student search module."),
    ),
    "display_search_subtab" => array(
      "title" => t("Display Search subtab"),
      "description" => t("The user may view the Search subtab under the Advisees tab."),
    ),
    "display_my_advisees_subtab" => array(
      "title" => t("Display My Advisees subtab"),
      "description" => t("The user may view the My Advisees subtab under the Advisees tab."),
    ),
    "display_my_majors_subtab" => array(
      "title" => t("Display My Majors subtab"),
      "description" => t("The user may view the My Majors subtab under the Advisees tab."),
    ),
    "display_majors_subtab" => array(
      "title" => t("Display Majors subtab"),
      "description" => t("The user may view the Majors (search) subtab under the Advisees tab."),
    ),
  );
}