function views_export_menu

2.x 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;
}