You are here

function esi_panels_ctools_plugin_api in ESI: Edge Side Includes 7.3

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.

Return value

array

File

modules/esi_panels/esi_panels.module, line 174
ESI handler for panel panes.

Code

function esi_panels_ctools_plugin_api($owner, $api) {
  if ($owner == 'panels' && $api == 'pipelines') {
    return array(
      'version' => 1,
    );
  }
}