You are here

function biblio_rtf_menu in Bibliography Module 6.2

File

modules/rtf/biblio_rtf.module, line 12

Code

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