You are here

function advanced_forum_ctools_plugin_api in Advanced Forum 6.2

Same name and namespace in other branches
  1. 7.2 advanced_forum.module \advanced_forum_ctools_plugin_api()

File

./advanced_forum.module, line 525
Enables the look and feel of other popular forum software.

Code

function advanced_forum_ctools_plugin_api($module, $api) {
  if ($module == 'page_manager' && ($api = 'pages_default')) {
    return array(
      'version' => 1,
      'path' => drupal_get_path('module', 'advanced_forum') . '/includes/panels',
    );
  }
}