You are here

function og_example_ctools_plugin_api in Organic groups 7

Same name and namespace in other branches
  1. 7.2 og_example/og_example.features.inc \og_example_ctools_plugin_api()

Implementation of hook_ctools_plugin_api().

File

og_example/og_example.features.inc, line 10
og_example.features.inc

Code

function og_example_ctools_plugin_api() {
  list($module, $api) = func_get_args();
  if ($module == "page_manager" && $api == "pages_default") {
    return array(
      "version" => 1,
    );
  }
}