You are here

function mlpanels_ctools_plugin_api in Multilingual Panels 7

Implements hook_ctools_plugin_api().

File

./mlpanels.module, line 43
Multilingual panels.

Code

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