You are here

function panels_ipe_ctools_plugin_api in Panels 6.3

Same name and namespace in other branches
  1. 7.3 panels_ipe/panels_ipe.module \panels_ipe_ctools_plugin_api()

Implementation of hook_ctools_plugin_api().

Inform CTools about version information for various plugins implemented by Panels.

Parameters

string $owner: The system name of the module owning the API about which information is being requested.

string $api: The name of the API about which information is being requested.

File

panels_ipe/panels_ipe.module, line 24

Code

function panels_ipe_ctools_plugin_api($owner, $api) {
  if ($owner == 'panels' && $api == 'pipelines') {
    return array(
      'version' => 1,
      'path' => drupal_get_path('module', 'panels_ipe') . '/includes',
    );
  }
}