function blockcache_alter_menu in Block Cache Alter 6
Same name and namespace in other branches
- 7 blockcache_alter.module \blockcache_alter_menu()
Implementation of hook_menu().
File
- ./
blockcache_alter.module, line 11 - Block Cache alter.
Code
function blockcache_alter_menu() {
$items['admin/settings/blockcache_alter'] = array(
'title' => 'Block cache alter',
'description' => 'Debug settings for Blockcache Alter',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'blockcache_alter_admin_settings',
),
'access arguments' => array(
'administer site configuration',
),
);
return $items;
}