function course_search_perm
Search API
7.x course_search.module | 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 156 - This module allows users to search for courses, descriptions, and, if supported, rotation schedules and sample syllabi.
Code
function course_search_perm() {
return array(
"access_course_search" => array(
'title' => t('Access course search'),
'description' => t('Users with this setting are allowed to actually view the course search link,
descriptions, syllabi, etc.'),
),
"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."),
),
);
}