You are here

function _save_tagged_maps in Bibliography Module 7

Same name and namespace in other branches
  1. 6.2 modules/endnote/biblio_tagged.install \_save_tagged_maps()
  2. 7.2 modules/endnote/biblio_tagged.install \_save_tagged_maps()
2 calls to _save_tagged_maps()
biblio_tagged_install in modules/endnote/biblio_tagged.install
Implementation of hook_install().
_reset_tagged_map in modules/endnote/biblio_tagged.install

File

modules/endnote/biblio_tagged.install, line 177
Database table creation for biblio_tagged module.

Code

function _save_tagged_maps() {
  $typemap = _get_tagged_type_map();
  $typenames = _get_tagged_type_names();
  $fieldmap = _get_tagged_field_map();
  $maps = array_merge($typemap, $typenames, $fieldmap);
  biblio_save_map($maps);
}