Guest User

Untitled

a guest
May 24th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1. function YOURMODULENAME_menu() {
  2. $urls['admin/unlock-order/export'] = array(
  3.         'title' => t('Order Report Excel Export'),
  4.         'description' => 'Exports all orders to a CSV file.',
  5.         'page callback' => 'unlock_order_export',
  6.         'access arguments' => array('access full reports'),
  7.         'file' => 'batch_export.inc',
  8.         'type' => MENU_CALLBACK
  9.     );
  10.  
  11. return $urls;
  12. }
Add Comment
Please, Sign In to add comment