You are here

function classified_ctools_plugin_api in Classified Ads 7.3

Same name and namespace in other branches
  1. 6.3 classified.module \classified_ctools_plugin_api()

Implements hook_ctools_plugin_api().

File

./classified.module, line 862
A pure D7 classified ads module inspired by the ed_classified module.

Code

function classified_ctools_plugin_api($module, $api) {
  if ($module == 'context' && $api == 'plugins') {
    return array(
      'version' => 3,
    );
  }
  else {
    return NULL;
  }
}