You are here

function qcollection_perm in Quiz 6.6

Implementation of hook_perm().

File

includes/qcollection/qcollection.module, line 29
The main file for qcollection.

Code

function qcollection_perm() {
  return array(
    // Managing qcollections:
    'access qcollection',
    'create qcollection',
    'edit own qcollection',
    'edit any qcollection',
    'delete any qcollection',
    'delete own qcollection',
  );
}