You are here

function jdrupal_ctools_plugin_api in jDrupal 7

Implements hook_ctools_plugin_api().

File

./jdrupal.module, line 47
The comanion module for the jDrupal JavaScript Library for Drupal.

Code

function jdrupal_ctools_plugin_api($owner, $api) {
  if ($owner == 'services' && $api == 'services') {
    return array(
      'version' => 3,
      'file' => 'jdrupal.services.inc',
    );
  }
}