You are here

function panels_everywhere_ctools_plugin_api in Panels Everywhere 6

Same name and namespace in other branches
  1. 7 panels_everywhere.module \panels_everywhere_ctools_plugin_api()

Implementation of hook_ctools_plugin_api().

File

./panels_everywhere.module, line 322
panels_everywhere.module

Code

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