You are here

function date_ap_style_permission in AP Style Date 7

Implements hook_permission().

File

./date_ap_style.module, line 44
Formats dates and times to use "AP" Style.

Code

function date_ap_style_permission() {
  return array(
    'administer ap style settings' => array(
      'title' => t('Configure default AP style settings'),
      'description' => t('Allows users to configure default AP style settings.'),
    ),
  );
}