function views_export_menu

Implementation of hook_menu().

File

views_export/views_export.module, line 13

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