You are here

function biblio_ctools_plugin_api in Bibliography Module 7.3

Same name and namespace in other branches
  1. 7 biblio.module \biblio_ctools_plugin_api()
  2. 7.2 biblio.module \biblio_ctools_plugin_api()

Implements hook_ctools_plugin_api().

File

./biblio.module, line 108
Maintains bibliographic lists.

Code

function biblio_ctools_plugin_api($module, $api) {
  if ($module == 'biblio' && $api == 'biblio_style') {
    return array(
      'version' => 1,
    );
  }
}