You are here

function farm_asset_ctools_plugin_api in farmOS 7

Implements hook_ctools_plugin_api().

File

modules/farm/farm_asset/farm_asset.module, line 491
Farm asset - A farm asset entity type.

Code

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