You are here

function bat_calendar_reference_permission in Booking and Availability Management Tools for Drupal 7

Implements hook_permission().

File

modules/bat_calendar_reference/bat_calendar_reference.module, line 11
Defines a field type for referencing event information.

Code

function bat_calendar_reference_permission() {
  $permissions = array(
    'reference unit calendar events' => array(
      'title' => t('Reference unit calendar events'),
      'description' => t('Allows users to embed events information in other nodes.'),
    ),
  );
  return $permissions;
}