function views_menu

Same name in other branches
  1. 7.x-3.x views.module \views_menu()

Implementation of hook_menu().

File

./views.module, line 294

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;
}