migrate_example.module 249 B

123456789101112
  1. <?php
  2. /*
  3. * You must implement hook_migrate_api(), setting the API level to 2, for
  4. * your migration classes to be recognized by the Migrate module.
  5. */
  6. function migrate_example_migrate_api() {
  7. $api = array(
  8. 'api' => 2,
  9. );
  10. return $api;
  11. }