You are here

function biblio_citeproc_theme in Bibliography Module 6.2

Same name and namespace in other branches
  1. 7 modules/CiteProc/biblio_citeproc.module \biblio_citeproc_theme()
  2. 7.2 modules/CiteProc/biblio_citeproc.module \biblio_citeproc_theme()

File

modules/CiteProc/biblio_citeproc.module, line 43

Code

function biblio_citeproc_theme() {
  return array(
    'biblio_citeproc_style' => array(
      'function' => 'theme_biblio_citeproc_style',
      'file' => 'biblio_citeproc.module',
      'arguments' => array(
        'node',
        'base' => 'biblio',
        'style_name' => 'classic',
        'inline' => FALSE,
      ),
    ),
    'biblio_citeproc_style_manager_form' => array(
      'render element' => 'form',
    ),
  );
}