You are here

function webform_anonymous_permission in Webform Anonymous 7

Implements hook_permission().

File

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

Code

function webform_anonymous_permission() {
  return array(
    'anonymize webform results' => array(
      'title' => t('Edit anonymize results setting'),
      'description' => t('Change the webform setting that anonymizes users who have submitted a webform.'),
    ),
  );
}