You are here

function biblio_retrieve_variable_properties in Bibliography Module 7.2

1 call to biblio_retrieve_variable_properties()
_biblio_bibtex_import in modules/bibtexParse/biblio_bibtex.module

File

includes/biblio.import.export.inc, line 954
Functions that are used to import and export biblio data.

Code

function biblio_retrieve_variable_properties(&$biblio, $temp) {
  foreach ($temp as $property => $value) {
    $biblio->{$property} = $value;
  }
}