You are here

function calendar_systems_perm in Calendar Systems 6.2

Same name and namespace in other branches
  1. 6.3 calendar_systems.module \calendar_systems_perm()
  2. 6 calendar_systems.module \calendar_systems_perm()

Implements hook_perm().

File

./calendar_systems.module, line 26
Contains Calendar Systems module hooks, helpers and API functions.

Code

function calendar_systems_perm() {
  return array(
    // Authenticated users:
    'select different calendar',
    // Administerator users:
    'administer calendar systems',
  );
}