You are here

function biblio_save_map in Bibliography Module 7

Same name and namespace in other branches
  1. 7.2 biblio.module \biblio_save_map()
8 calls to biblio_save_map()
_save_bibtex_maps in modules/bibtexParse/biblio_bibtex.install
_save_crossref_maps in modules/crossref/biblio_crossref.install
_save_csl_maps in modules/CiteProc/biblio_citeproc.install
_save_endnote7_maps in modules/endnote/biblio_xml.install
_save_endnote8_maps in modules/endnote/biblio_xml.install

... See full list

File

./biblio.module, line 2483
Bibliography Module for Drupal.

Code

function biblio_save_map($maps) {
  db_insert('biblio_type_maps')
    ->fields($maps)
    ->execute();
}