You are here

function views_export_menu in Views (for Drupal 7) 6.2

Same name and namespace in other branches
  1. 6.3 views_export/views_export.module \views_export_menu()

Implementation of hook_menu().

File

views_export/views_export.module, line 13
views_export.module

Code

function views_export_menu() {
  $items = array();
  $items['admin/build/views/tools/export'] = array(
    'title' => 'Bulk export',
    'access arguments' => array(
      'use views exporter',
    ),
    'page callback' => 'views_export_export',
    'type' => MENU_LOCAL_TASK,
  );
  $items['admin/build/views/tools/export/results'] = array(
    'title' => 'Bulk export results',
    'access arguments' => array(
      'use views exporter',
    ),
    'page callback' => 'views_export_export',
    'type' => MENU_LOCAL_TASK,
  );
  return $items;
}