You are here

function bat_api_permission in Booking and Availability Management API 7

Same name and namespace in other branches
  1. 7.2 bat_api.module \bat_api_permission()

Implements hook_permission()

File

./bat_api.module, line 39

Code

function bat_api_permission() {
  return array(
    'access units index service' => array(
      'title' => t('Access units index service'),
      'description' => t('Access units index service.'),
    ),
    'access add unit service' => array(
      'title' => t('Access add unit service'),
      'description' => t('Access add unit service.'),
    ),
    'access availability index service' => array(
      'title' => t('Access availability index service'),
      'description' => t('Access availability index service.'),
    ),
    'access update availability service' => array(
      'title' => t('Access update availability service'),
      'description' => t('Access update availability service.'),
    ),
    'access pricing index service' => array(
      'title' => t('Access pricing index service'),
      'description' => t('Access pricing index service.'),
    ),
    'access update pricing service' => array(
      'title' => t('Access update pricing service'),
      'description' => t('Access update pricing service.'),
    ),
    'access booking index service' => array(
      'title' => t('Access booking index service'),
      'description' => t('Access booking index service.'),
    ),
    'access add booking service' => array(
      'title' => t('Access add booking service'),
      'description' => t('Access add booking service.'),
    ),
  );
}