You are here

function _biblio_ui_add_import_settings in Bibliography Module 7.3

Helper function; Add the selected Biblio style own settings.

_state

Parameters

$form:

1 call to _biblio_ui_add_import_settings()
biblio_ui_import_biblio in modules/biblio_ui/biblio_ui.pages.inc
Import biblios.

File

modules/biblio_ui/biblio_ui.pages.inc, line 81

Code

function _biblio_ui_add_import_settings($plugin_name) {
  $plugin = biblio_get_biblio_style($plugin_name);
  $class_name = ctools_plugin_load_class('biblio', 'biblio_style', $plugin_name, 'class');
  if (!class_exists($class_name)) {
    return;
  }
  $biblio_style = new $class_name($plugin);
  return $biblio_style
    ->settingsForm();
}