You are here

function ape_permission in Advanced Page Expiration 7

Implements hook_permission().

File

./ape.module, line 27
Allows finer control of the Cache Control header.

Code

function ape_permission() {
  return array(
    'administer ape' => array(
      'title' => t('Administer advanced page expiration'),
      'description' => t('Configure advanced page expiration.'),
    ),
  );
}