You are here

function monolog_ctools_plugin_api in Monolog 6

Same name and namespace in other branches
  1. 7 monolog.module \monolog_ctools_plugin_api()

Implements hook_ctools_plugin_api().

File

./monolog.module, line 158
A Framework and UI for integrating with the Monolog library.

Code

function monolog_ctools_plugin_api($owner, $api) {
  if ('monolog' == $owner && 'monolog' == $api) {
    return array(
      'version' => 1,
    );
  }
}