function views_cache_bully_menu in Views cache bully 6.3
Same name and namespace in other branches
- 8 views_cache_bully.module \views_cache_bully_menu()
- 7.3 views_cache_bully.module \views_cache_bully_menu()
Implements hook_menu().
File
- ./
views_cache_bully.module, line 10 - Module file for views_cache_bully.
Code
function views_cache_bully_menu() {
$items = array();
$items['admin/settings/views-cache-bully'] = array(
'title' => 'Views Cache Bully settings',
'description' => 'Configure Views Cache Bully settings',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'views_cache_bully_admin_form',
),
'access arguments' => array(
'administer views cache bully',
),
'file' => 'views_cache_bully.admin.inc',
);
return $items;
}