You are here

function total_control_ctools_plugin_api in Total Control Admin Dashboard 6.2

Same name and namespace in other branches
  1. 6 total_control.module \total_control_ctools_plugin_api()
  2. 7.2 total_control.module \total_control_ctools_plugin_api()

Implementation of hook_ctools_plugin_api().

Needed so that next hooks are picked up.

File

./total_control.module, line 67

Code

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