You are here

function log_ctools_plugin_api in Log entity 7

Implements hook_ctools_plugin_api().

File

./log.module, line 1192
Log - A general purpose record keeping system.

Code

function log_ctools_plugin_api($owner, $api) {
  $return = array();
  if ($owner == 'feeds' && $api == 'plugins') {
    $return['version'] = 1;
  }
  return $return;
}