function prereqs_perm
Search API
7.x prereqs.module | prereqs_perm() |
6.x prereqs.module | prereqs_perm() |
File
- modules/
prereqs/ prereqs.module, line 44 - This is the module file for the prereqs module.
Code
function prereqs_perm() {
return array(
"administer_prereqs" => array(
"title" => t("Administer prereq settings"),
),
'override_course_locks' => array(
'title' => t("Override course locks"),
'description' => t("Users with this permission are allowed to 'override' courses with locks for checkboxes, meaning they can
still advise a course even if the prereqs (or other issues) have not passed."),
),
);
}