date_migrate_example.module 372 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * @file
  4. * Migration integration for Date Migrate Example.
  5. */
  6. include_once 'date_migrate_example.features.inc';
  7. /**
  8. * Implements hook_migrate_api().
  9. */
  10. function date_migrate_example_migrate_api() {
  11. $api = array(
  12. 'api' => 2,
  13. 'migrations' => array(
  14. 'DateExample' => array('class_name' => 'DateExampleMigration')
  15. ),
  16. );
  17. return $api;
  18. }