You are here

function ape_menu in Advanced Page Expiration 7

Implements hook_menu().

File

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

Code

function ape_menu() {
  $items['admin/config/development/ape'] = array(
    'title' => 'Advanced page expiration',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'ape_admin_settings',
    ),
    'description' => 'Configure the strategy for the cache-control header which defines cache lifetime for external caching systems.',
    'access arguments' => array(
      'administer ape',
    ),
    'file' => 'ape.admin.inc',
  );
  return $items;
}