You are here

function classified_ctools_plugin_api in Classified Ads 6.3

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

Implements hook_ctools_plugin_api().

Parameters

string $module: The name of the module for which API implementations are being looked for.

string $api: Implementation information.

File

./classified.module, line 820
A pure D6 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,
    );
  }
}