You are here

function views_menu in Views (for Drupal 7) 6.3

Same name and namespace in other branches
  1. 8.3 views.module \views_menu()
  2. 5 views.module \views_menu()
  3. 6.2 views.module \views_menu()
  4. 7.3 views.module \views_menu()

Implementation of hook_menu().

File

./views.module, line 294
Primarily Drupal hooks and global API functions to manipulate views.

Code

function views_menu() {

  // Any event which causes a menu_rebuild could potentially mean that the
  // Views data is updated -- module changes, profile changes, etc.
  views_invalidate_cache();
  $items = array();
  $items['views/ajax'] = array(
    'title' => 'Views',
    'page callback' => 'views_ajax',
    'access callback' => TRUE,
    'description' => 'Ajax callback for view loading.',
    'file' => 'includes/ajax.inc',
    'type' => MENU_CALLBACK,
  );

  // Path is not admin/build/views due to menu complications with the wildcards from
  // the generic ajax callback.
  $items['admin/views/ajax/autocomplete/user'] = array(
    'page callback' => 'views_ajax_autocomplete_user',
    'access callback' => 'user_access',
    'access arguments' => array(
      'access content',
    ),
    'file' => 'includes/ajax.inc',
    'type' => MENU_CALLBACK,
  );
  return $items;
}