You are here

function biblio_xml_menu in Bibliography Module 6.2

File

modules/endnote/biblio_xml.module, line 13

Code

function biblio_xml_menu() {
  global $user;
  $items = array();
  $base = variable_get('biblio_base', 'biblio');
  $items["{$base}/export/xml"] = array(
    'title' => '',
    'page callback' => 'biblio_xml_biblio_export',
    'access callback' => 'user_access',
    'access arguments' => array(
      'show export links',
    ),
    'type' => MENU_CALLBACK,
  );
  return $items;
}