function calendar_systems_perm in Calendar Systems 6.2
Same name and namespace in other branches
- 6.3 calendar_systems.module \calendar_systems_perm()
- 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',
);
}