function total_control_ctools_plugin_api in Total Control Admin Dashboard 6
Same name and namespace in other branches
- 6.2 total_control.module \total_control_ctools_plugin_api()
- 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 64
Code
function total_control_ctools_plugin_api($module, $api) {
if ($module == 'page_manager' && $api == 'pages_default') {
return array(
'version' => 1,
);
}
}