You are here

function biblio_export_form in Bibliography Module 7.2

Same name and namespace in other branches
  1. 6.2 includes/biblio.import.export.inc \biblio_export_form()
  2. 6 biblio.import.export.inc \biblio_export_form()
  3. 7 includes/biblio.import.export.inc \biblio_export_form()

File

includes/biblio.import.export.inc, line 435
Functions that are used to import and export biblio data.

Code

function biblio_export_form() {
  $form['pot'] = array(
    '#type' => 'fieldset',
    '#collapsible' => TRUE,
    '#collapsed' => TRUE,
    '#title' => t('POT Export'),
    '#description' => t('Here you may export a ".pot" file which contains the titles and hints from the database which are not normally captured by translation extractors)'),
  );
  $form['pot']['button'] = array(
    '#type' => 'submit',
    '#value' => t('Export translation data'),
  );
  return $form;
}