function calendar_systems_permission in Calendar Systems 8
Same name and namespace in other branches
- 7.3 calendar_systems.module \calendar_systems_permission()
- 7 calendar_systems.module \calendar_systems_permission()
- 7.2 calendar_systems.module \calendar_systems_permission()
Implements hook_perm().
File
- ./
calendar_systems.module, line 26 - 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.'),
),
);
}