You are here

function panels_simple_cache_menu in Panels 6.2

Same name and namespace in other branches
  1. 5.2 panels_simple_cache/panels_simple_cache.module \panels_simple_cache_menu()

Implementation of hook_menu().

File

panels_simple_cache/panels_simple_cache.module, line 13
panels_simple_cache.module

Code

function panels_simple_cache_menu() {
  $items['admin/panels/simple-cache'] = array(
    'title' => 'Simple cache',
    'access' => 'panels_simple_cache_access',
    'type' => MENU_NORMAL_ITEM,
    'callback' => 'panels_simple_cache_admin',
    'description' => 'Information about Panels simple cache.',
  );
  return $items;
}