function date_repeat_field_permission in Date 8
Same name and namespace in other branches
- 7.3 date_repeat_field/date_repeat_field.module \date_repeat_field_permission()
- 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 115 - Creates the option of Repeating date fields and manages Date fields that use the Date Repeat API.
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.'),
),
);
}