You are here

function commons_search_ctools_plugin_api in Drupal Commons 7.3

Implements hook_ctools_plugin_api().

File

modules/commons/commons_search/commons_search.features.inc, line 10
commons_search.features.inc

Code

function commons_search_ctools_plugin_api() {
  list($module, $api) = func_get_args();
  if ($module == "panelizer" && $api == "panelizer") {
    return array(
      "version" => "1",
    );
  }
  list($module, $api) = func_get_args();
  if ($module == "strongarm" && $api == "strongarm") {
    return array(
      "version" => "1",
    );
  }
}