You are here

function global_filter_menu in Views Global Filter 8

Same name and namespace in other branches
  1. 6 global_filter.module \global_filter_menu()
  2. 7 global_filter.module \global_filter_menu()

Implements hook_menu().

Define Global Filter menu options.

File

./global_filter.module, line 107
global_filter.module

Code

function global_filter_menu() {
  $items['admin/config/content/global_filter'] = array(
    'title' => 'Views Global Filter',
    'description' => 'Set the number of global filters you need. Configure interaction with user profiles. Advanced settings.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'global_filter_admin_config',
    ),
    'access arguments' => array(
      'administer site configuration',
    ),
    'file' => 'global_filter.admin.inc',
  );
  return $items;
}