citeproc.inc in Bibliography Module 7.3
File
plugins/biblio_style/citeproc/citeproc.inc
View source
<?php
if (module_exists('libraries') && file_exists(libraries_get_path('citeproc-php') . '/CiteProc.php')) {
$plugin = array(
'title' => t('CiteProc'),
'description' => t('CiteProc styles.'),
'class' => 'BiblioStyleCiteProc',
'options' => array(
'style_name' => 'chicago-author-date',
'style_path' => file_exists(libraries_get_path('styles') . '/chicago-author-date.csl') ? libraries_get_path('styles') : libraries_get_path('citeproc-php') . '/style',
'label_as_link' => TRUE,
),
'export' => array(
'citeproc' => array(
'name' => t('Citeproc'),
'file extension' => 'csl',
),
),
);
}