You are here

function long_answer_perm in Quiz 6.5

Same name and namespace in other branches
  1. 6.6 question_types/long_answer/long_answer.module \long_answer_perm()
  2. 6.3 question_types/long_answer/long_answer.module \long_answer_perm()

Implementation of hook_perm().

File

question_types/long_answer/long_answer.module, line 210
This module defines a long answer question type for quizzes.

Code

function long_answer_perm() {
  return array(
    'score long answer',
  );
}