You are here

function edit_limit_permission in Edit Limit 7

Implements hook_permissions().

File

./edit_limit.module, line 42
edit_limit.module Primary module file for Edit Limit. This contains all the hooks needed to run the module.

Code

function edit_limit_permission() {
  return array(
    'bypass edit limits' => array(
      'title' => t('Bypass edit limits'),
      'description' => t('Bypass the edit limits set in place for normal users.'),
    ),
    'administer edit limit' => array(
      'title' => t('Administer edit limits'),
      'description' => t('Bypass the edit limits set in place for normal users.'),
    ),
  );
}