You are here

function revision_deletion_permission in Revision Deletion 7

Implements hook_permission().

File

./revision_deletion.module, line 68

Code

function revision_deletion_permission() {
  return array(
    'administer revision_deletion' => array(
      'title' => t('Administer Revision Deletion'),
      'description' => t('Allow access to configure the module settings.'),
    ),
  );
}