function course_search_perm

6.x course_search.module course_search_perm()
4.x course_search.module course_search_perm()
5.x course_search.module course_search_perm()

File

modules/course_search/course_search.module, line 154
This module allows users to search for courses, descriptions, and, if supported, rotation schedules and sample syllabi.

Code

function course_search_perm() {
  return array(
    "administer_course_search" => array(
      "title" => t("Administer course search"),
      "description" => t("Users with this setting will be able
                              to modify settings for the Course Search module."),
    ),
    "can_update_course_info_details" => array(
      "title" => t("Can update course info details"),
      "description" => t("Allows users to update the 'course info' details,
                                like the course's sample syllabus and rotation
                                schedule."),
    ),


  );
}