Projet

Général

Profil

Paste
Télécharger (300 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / uuid / uuid_services_example / uuid_services_example.features.inc @ bf6fb0ee

1
<?php
2

    
3
/**
4
 * @file
5
 * uuid_services_example.features.inc
6
 */
7

    
8
/**
9
 * Implements hook_ctools_plugin_api().
10
 */
11
function uuid_services_example_ctools_plugin_api() {
12
  list($module, $api) = func_get_args();
13
  if ($module == "services" && $api == "services") {
14
    return array("version" => "3");
15
  }
16
}