You are here

function date_repeat_field_permission in Date 7.3

Same name and namespace in other branches
  1. 8 date_repeat_field/date_repeat_field.module \date_repeat_field_permission()
  2. 7.2 date_repeat_field/date_repeat_field.module \date_repeat_field_permission()

Implements hook_permission().

File

date_repeat_field/date_repeat_field.module, line 109
Creates the option of Repeating Date fields and manages Date Repeat fields.

Code

function date_repeat_field_permission() {
  return array(
    'view date repeats' => array(
      'title' => t('View Repeating Dates'),
      'description' => t('Allow user to see a page with all the times a date repeats.'),
    ),
  );
}