function biblio_bibtex_menu in Bibliography Module 6.2
File
- modules/
bibtexParse/ biblio_bibtex.module, line 13
Code
function biblio_bibtex_menu() {
global $user;
$items = array();
$base = variable_get('biblio_base', 'biblio');
$items["{$base}/export/bibtex"] = array(
'title' => '',
'page callback' => 'biblio_bibtex_biblio_export',
'access callback' => 'user_access',
'access arguments' => array(
'show export links',
),
'type' => MENU_CALLBACK,
);
return $items;
}