example_citeproc.inc in Bibliography Module 7.3
File
modules/biblio_example/plugins/biblio_style/example_citeproc/example_citeproc.inc
View source
<?php
if (module_exists('libraries') && file_exists(libraries_get_path('citeproc-php') . '/CiteProc.php')) {
$plugin = array(
'title' => t('Example CiteProc'),
'description' => t('Example of extending CiteProc styles.'),
'class' => 'BiblioStyleExampleCiteProc',
'options' => array(
'style_name' => 'chicago-author-date',
'style_path' => libraries_get_path('citeproc-php') . '/style',
),
'assets' => array(
'js' => array(
drupal_get_path('module', 'biblio_example') . '/js/biblio_example.js',
),
'css' => array(
drupal_get_path('module', 'biblio_example') . '/css/biblio_example.css',
),
),
);
}