You are here

function webform_anonymous_perm in Webform Anonymous 6

Implements hook_perm().

File

./webform_anonymous.module, line 13
This module enables a webform setting to anonymize the webform's results from everyone.

Code

function webform_anonymous_perm() {
  return array(
    'anonymize webform results',
  );
}