You are here

function biblio_tagged_menu in Bibliography Module 6.2

File

modules/endnote/biblio_tagged.module, line 12

Code

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