You are here

function webform_clear_permission in Webform Clear 7.2

Implements hook_permission().

File

./webform_clear.module, line 22
Removes Webform submissions from the database after they have been emailed.

Code

function webform_clear_permission() {
  return array(
    'set webform_clear times' => array(
      'title' => t('Set Webform submission storage periods'),
      'description' => t('Allows the user to set the Webform submission storage period for any webform the user can edit, overriding the site wide default.'),
    ),
  );
}