function advise_perm
Search API
7.x advise.module | advise_perm() |
6.x advise.module | advise_perm() |
4.x advise.module | advise_perm() |
5.x advise.module | advise_perm() |
Implementation of hook_perm
File
- modules/
advise/ advise.module, line 679
Code
function advise_perm() {
$perms = array();
$perms ["view_any_advising_session"] = array(
"title" => t("View any advising session"),
"description" => t("The user is allowed to view any advising sessions for any user.
For example, the user is an advisor."),
);
$perms ["view_own_advising_session"] = array(
"title" => t("View own advising session"),
"description" => t("The user is allowed to view their own advising sessions.
For example, the user is a student."),
);
$perms ["can_advise_students"] = array(
"title" => t("Can advise students"),
"description" => t("The user is allowed to advise other students,
by clicking a checkbox next to a course, or by selecting
a course from an elective group."),
);
$perms ["can_substitute"] = array(
"title" => t("Can substitute"),
"description" => t("The user is allowed to substitute courses on a student's
degree plan."),
);
$perms ["toggle_draft"] = array(
"title" => t("Toggle draft mode"),
"description" => t("The user toggle 'draft' mode, so they can view draft degree plans
in FlightPath."),
);
return $perms;
}