You are here

function quiz_perm in Quiz 6.2

Same name and namespace in other branches
  1. 5.2 quiz.module \quiz_perm()
  2. 5 quiz.module \quiz_perm()
  3. 6.6 quiz.module \quiz_perm()
  4. 6.3 quiz.module \quiz_perm()
  5. 6.4 quiz.module \quiz_perm()
  6. 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',
  );
}