You are here

function webform_perm in Webform 6.3

Same name and namespace in other branches
  1. 5.2 webform.module \webform_perm()
  2. 5 webform.module \webform_perm()
  3. 6.2 webform.module \webform_perm()

Implements hook_perm().

File

./webform.module, line 487

Code

function webform_perm() {
  return array(
    'access all webform results',
    'access own webform results',
    'edit all webform submissions',
    'delete all webform submissions',
    'access own webform submissions',
    'edit own webform submissions',
    'delete own webform submissions',
  );
}