You are here

function webform_perm in Webform 5.2

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

Implementation of hook_perm().

File

./webform.module, line 252

Code

function webform_perm() {
  return array(
    'create webforms',
    'edit own webforms',
    'edit webforms',
    'access webform results',
    'clear webform results',
    'access own webform submissions',
    'edit own webform submissions',
    'edit webform submissions',
    'use PHP for additional processing',
  );
}