You are here

function biblio_pm_add_field_instances in Bibliography Module 7.2

1 call to biblio_pm_add_field_instances()
biblio_pm_install in modules/pubmed/biblio_pm.install
Implementation of hook_install().

File

modules/pubmed/biblio_pm.module, line 370

Code

function biblio_pm_add_field_instances() {

  // pubtypes with existing fields
  foreach (biblio_get_fielded_pubtypes() as $pubtype) {
    $instance = biblio_pm_default_instance_info($pubtype);
    field_create_instance($instance);
  }
}