You are here

function oa_news_ctools_plugin_api in Open Atrium Core 7.2

Implements hook_ctools_plugin_api().

File

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

Code

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