You are here

function views_cache_bully_menu in Views cache bully 8

Same name and namespace in other branches
  1. 6.3 views_cache_bully.module \views_cache_bully_menu()
  2. 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/config/system/views-cache-bully'] = array(
    'title' => 'Views Cache Bully settings',
    'description' => 'Configure default views caching behavior for uncached views.',
    'route_name' => 'views_cache_bully_settings',
    'type' => MENU_NORMAL_ITEM,
  );
  return $items;
}