You are here

function ad_ui_ctools_plugin_api in Advertisement 7.3

Implements hook_ctools_plugin_api().

File

modules/ad_ui/ad_ui.features.inc, line 10
ad_ui.features.inc

Code

function ad_ui_ctools_plugin_api($module = NULL, $api = NULL) {
  if ($module == "ds" && $api == "ds") {
    return array(
      "version" => "1",
    );
  }
  if ($module == "strongarm" && $api == "strongarm") {
    return array(
      "version" => "1",
    );
  }
}