You are here

function date_tools_permission in Date 7.2

Same name and namespace in other branches
  1. 8 date_tools/date_tools.module \date_tools_permission()
  2. 7.3 date_tools/date_tools.module \date_tools_permission()
  3. 7 date_tools/date_tools.module \date_tools_permission()

Implements hook_permission().

File

date_tools/date_tools.module, line 31
Primary hook implementations for the Date Tools module.

Code

function date_tools_permission() {
  return array(
    'administer date tools' => array(
      'title' => t('Administer date tools'),
    ),
  );
}