You are here

function biblio_ui_export_menu_item in Bibliography Module 7.3

Export a Biblio entity to a file by a given format.

Parameters

$bids_string: Comma-separated list of Biblio IDs.

$style_name: Biblio style string.

$format_name: (Optional) Biblio export format string.

1 string reference to 'biblio_ui_export_menu_item'
biblio_ui_menu in modules/biblio_ui/biblio_ui.module
Implements hook_menu().

File

modules/biblio_ui/biblio_ui.module, line 1224
Main functionality file for the biblio UI module.

Code

function biblio_ui_export_menu_item($bids_string = '', $style_name, $format_name = NULL) {
  $bids = biblio_ui_get_ids_from_string($bids_string);
  biblio_ui_export($bids, $style_name, $format_name);
}