function boost_crawler_menu in Boost 7
Implements hook_menu().
File
- boost_crawler/
boost_crawler.module, line 11 - Minimal crawler to regenerate the cache as pages are expired.
Code
function boost_crawler_menu() {
$items = array();
$items['admin/config/system/boost/crawler'] = array(
'title' => 'Crawler',
'description' => 'Configuration for the Boost crawler.',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'boost_crawler_admin_settings',
),
'access arguments' => array(
'administer site configuration',
),
'type' => MENU_LOCAL_TASK,
'file' => 'boost_crawler.admin.inc',
);
return $items;
}