You are here

function biblio_content_extra_fields in Bibliography Module 6.2

Parameters

string $type_name:

Return value

array An array of definitions for extra fields defined in teh biblio module.

File

./biblio.module, line 2637
Main file for Drupal module biblio.

Code

function biblio_content_extra_fields($type_name) {
  if ($type_name == 'biblio') {
    module_load_include('inc', 'biblio', 'includes/content.biblio');
    return _biblio_content_extra_fields($type_name);
  }
}