You are here

function calendar_systems_permission in Calendar Systems 7.3

Same name and namespace in other branches
  1. 8 calendar_systems.module \calendar_systems_permission()
  2. 7 calendar_systems.module \calendar_systems_permission()
  3. 7.2 calendar_systems.module \calendar_systems_permission()

Implements hook_perm().

File

./calendar_systems.module, line 22
Contains Calendar Systems hook implementations and helpers.

Code

function calendar_systems_permission() {
  return array(
    'administer calendar_systems' => array(
      'title' => t('Administer calendar systems'),
      'description' => t('Administer calendar systems configurations.'),
    ),
  );
}