You are here

function boost_expire_menu in Boost Expire 7

Implements hook_menu().

File

./boost_expire.module, line 12
Expires Boost caches automatically when certain Drupal actions are taken.

Code

function boost_expire_menu() {
  $items['admin/config/system/boost_expire'] = array(
    'title' => 'Boost Expire',
    'description' => 'Configuration for Boost Expire.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'boost_expire_admin_settings',
    ),
    'access arguments' => array(
      'administer site configuration',
    ),
    'type' => MENU_NORMAL_ITEM,
  );
  return $items;
}