migrate_materio.module 733 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. /**
  3. * @file
  4. * This is the file description for Migrate Materio module.
  5. *
  6. * In this more verbose, multi-line description, you can specify what this
  7. * file does exactly. Make sure to wrap your documentation in column 78 so
  8. * that the file can be displayed nicely in default-sized consoles.
  9. */
  10. /**
  11. * Implements hook_menu().
  12. */
  13. function migrate_materio_menu() {
  14. $items = array();
  15. // Type '$item ⇥' to create a new menu item.
  16. return $items;
  17. }
  18. /**
  19. * You must implement hook_migrate_api(), setting the API level to 2, for
  20. * your migration classes to be recognized by the Migrate module (for the 7.x-2.x branch).
  21. */
  22. function migrate_materio_migrate_api() {
  23. $api = array(
  24. 'api' => 2,
  25. );
  26. return $api;
  27. }