function appointment_calendar_permission in Appointment Calendar 7
Implements hook_permission().
File
- ./
appointment_calendar.module, line 11 - Adds Appointment calendar filtering and displays Availability.
Code
function appointment_calendar_permission() {
return array(
'access appointment calendar settings page' => array(
'title' => t('Access Appointment Calendar Settings'),
'description' => t('Appointment Calendar for Timeslots booking using Node creation'),
),
'access appointment calendar list page' => array(
'title' => t('Access Appointment Calendar Settings'),
'description' => t('Datewise List for Appointment Calendar'),
),
'access appointment calendar view page' => array(
'title' => t('Access Appointment Calendar View Page'),
'description' => t('List for Appointment Calendar View'),
),
'access appointment calendar edit page' => array(
'title' => t('Access Appointment Calendar Edit Page'),
'description' => t('List for Appointment Calendar Edit'),
),
'access appointment calendar delete page' => array(
'title' => t('Access Appointment Calendar Delete Page'),
'description' => t('List for Appointment Calendar Edit'),
),
);
}