You are here

function biblio_check_instances in Bibliography Module 7.2

1 call to biblio_check_instances()
biblio_create in ./biblio.module
Create a biblio entity object

File

includes/biblio.fields.inc, line 140

Code

function biblio_check_instances($publication_type) {

  // Add field instances only if they dont already exist.
  if (biblio_field_instances_missing($publication_type)) {
    biblio_add_field_instances('biblio', $publication_type);
  }
}