You are here

function biblio_save_map in Bibliography Module 7.2

Same name and namespace in other branches
  1. 7 biblio.module \biblio_save_map()

Inserts the publication type mapping to the database

Parameters

string $maps serialized type mapping data:

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 2457

Code

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