function date_restrictions_permission in Date Restrictions 7
Implements hook_permission().
File
- ./
date_restrictions.module, line 6  
Code
function date_restrictions_permission() {
  return array(
    'bypass date restrictions on edit' => array(
      'title' => t('Bypass date restrictions on edit'),
      'description' => t('Bypass date restrictions when editing an entity.'),
    ),
  );
}