function quiz_perm in Quiz 6.2
Same name and namespace in other branches
- 5.2 quiz.module \quiz_perm()
- 5 quiz.module \quiz_perm()
- 6.6 quiz.module \quiz_perm()
- 6.3 quiz.module \quiz_perm()
- 6.4 quiz.module \quiz_perm()
- 6.5 quiz.module \quiz_perm()
Implementation of hook_perm().
File
- ./
quiz.module, line 81 - Quiz Module
Code
function quiz_perm() {
return array(
QUIZ_PERM_ADMIN_CONFIG,
'access quiz',
'create quiz',
'administer quiz',
'user results',
'own results',
);
}