You are here

merci_import_example.features.inc in MERCI (Manage Equipment Reservations, Checkout and Inventory) 7.2

File

modules/merci_import/merci_import_example/merci_import_example.features.inc
View source
<?php

/**
 * @file
 * merci_import_example.features.inc
 */

/**
 * Implements hook_ctools_plugin_api().
 */
function merci_import_example_ctools_plugin_api() {
  list($module, $api) = func_get_args();
  if ($module == "feeds" && $api == "feeds_importer_default") {
    return array(
      "version" => "1",
    );
  }
}