function biblio_export_form in Bibliography Module 7
Same name and namespace in other branches
- 6.2 includes/biblio.import.export.inc \biblio_export_form()
- 6 biblio.import.export.inc \biblio_export_form()
- 7.2 includes/biblio.import.export.inc \biblio_export_form()
1 string reference to 'biblio_export_form'
- biblio_menu in ./
biblio.module - Implements hook_menu().
File
- includes/
biblio.import.export.inc, line 455 - 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;
}