You are here

function calendar_systems_date_properties_permission in Calendar Systems 8

Same name and namespace in other branches
  1. 7 calendar_systems_date_properties/calendar_systems_date_properties.module \calendar_systems_date_properties_permission()
  2. 7.2 calendar_systems_date_properties/calendar_systems_date_properties.module \calendar_systems_date_properties_permission()

Implements hook_perm().

File

calendar_systems_date_properties/calendar_systems_date_properties.module, line 22
Contains hook implementations and helpers.

Code

function calendar_systems_date_properties_permission() {
  return array(
    'administer calendar_systems_date_properties' => array(
      'title' => t('Administer calendar systems date properties'),
      'description' => t('Administer calendar systems date properties configurations.'),
    ),
  );
}