You are here

function og_example_ctools_plugin_api in Organic groups 7.2

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

Implements hook_ctools_plugin_api().

File

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

Code

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