function _save_bibtex_maps in Bibliography Module 7
Same name and namespace in other branches
- 6.2 modules/bibtexParse/biblio_bibtex.install \_save_bibtex_maps()
- 7.2 modules/bibtexParse/biblio_bibtex.install \_save_bibtex_maps()
2 calls to _save_bibtex_maps()
- biblio_bibtex_install in modules/
bibtexParse/ biblio_bibtex.install - Implementation of hook_install().
- _reset_bibtex_map in modules/
bibtexParse/ biblio_bibtex.install
File
- modules/
bibtexParse/ biblio_bibtex.install, line 139 - Database table creation for biblio_bibtex module.
Code
function _save_bibtex_maps() {
$typemap = _get_bibtex_type_map();
$typenames = _get_bibtex_type_names();
$fieldmap = _get_bibtex_field_map();
$maps = array_merge($typemap, $typenames, $fieldmap);
biblio_save_map($maps);
}