You are here

function drupalgap_ctools_plugin_api in DrupalGap 7

Same name and namespace in other branches
  1. 6 drupalgap.module \drupalgap_ctools_plugin_api()
  2. 7.2 drupalgap.module \drupalgap_ctools_plugin_api()

Implements hook_ctools_plugin_api().

File

./drupalgap.module, line 82
A module to provide a bridge between Drupal websites and PhoneGap mobile applications.

Code

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