You are here

function evergreen_resources_ctools_plugin_api in MERCI (Manage Equipment Reservations, Checkout and Inventory) 7.3

Implements hook_ctools_plugin_api().

File

merci_migrate/features/evergreen_resources/evergreen_resources.features.inc, line 26
evergreen_resources.features.inc

Code

function evergreen_resources_ctools_plugin_api($module = NULL, $api = NULL) {
  if ($module == "field_group" && $api == "field_group") {
    return array(
      "version" => "1",
    );
  }
  if ($module == "strongarm" && $api == "strongarm") {
    return array(
      "version" => "1",
    );
  }
}