migrateunfuddle.module 412 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * @file
  4. * Import an Unfuddle dump into a Drupal Casetracker instance
  5. *
  6. * @copyright Coyright (c) 2011 Ouest Systèmes Informatiques (OSI, OSInet)
  7. * @license Licensed under the General Public License version 2 and later, and
  8. * the CeCILL 2.0 license.
  9. */
  10. function migrateunfuddle_migrate_api() {
  11. $api = array(
  12. 'api' => 2,
  13. );
  14. // dsm(get_defined_vars(), __FUNCTION__);
  15. return $api;
  16. }