function bulk_export_menu in Chaos Tool Suite (ctools) 6
Same name and namespace in other branches
- 7 bulk_export/bulk_export.module \bulk_export_menu()
Implements hook_menu().
File
- bulk_export/
bulk_export.module, line 27 - Perform bulk exports.
Code
function bulk_export_menu() {
$items['admin/build/bulkexport'] = array(
'title' => 'Bulk Exporter',
'description' => 'Bulk-export multiple CTools-handled data objects to code.',
'access arguments' => array(
'use bulk exporter',
),
'page callback' => 'bulk_export_export',
);
$items['admin/build/bulkexport/results'] = array(
'access arguments' => array(
'use bulk exporter',
),
'page callback' => 'bulk_export_export',
'type' => MENU_CALLBACK,
);
return $items;
}