migrate_materio.module 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. define('MIG_MAT_SRC_DB', variable_get('migrate_materio_database', ''));
  11. /**
  12. * You must implement hook_migrate_api(), setting the API level to 2, for
  13. * your migration classes to be recognized by the Migrate module (for the 7.x-2.x branch).
  14. */
  15. function migrate_materio_migrate_api() {
  16. $api = array(
  17. 'api' => 2,
  18. );
  19. return $api;
  20. }
  21. /**
  22. * Implements hook_menu().
  23. */
  24. function migrate_materio_menu() {
  25. $items = array();
  26. $items['admin/config/development/migrate_materio'] = array(
  27. 'title' => 'Materio Migration Settings',
  28. 'page callback' => 'drupal_get_form',
  29. 'page arguments' => array('migrate_materio_settings'),
  30. 'access callback' => 'user_access',
  31. 'access arguments' => array('administer site configuration'),
  32. );
  33. return $items;
  34. }
  35. /**
  36. * Form to setting up the database name and migration file path for migration of data.
  37. */
  38. function migrate_materio_settings($form, &$form_state) {
  39. $form['migrate_materio_database'] = array(
  40. '#type' => 'textfield',
  41. '#title' => 'Database name',
  42. '#default_value' => variable_get('migrate_materio_database', ''),
  43. '#description' => t('Please enter the name of the database. Note that the database must be accessible by current website db user and must reside on the same db server.'),
  44. '#required' => TRUE,
  45. );
  46. // $form['redcat_migration_file_path'] = array(
  47. // '#type' => 'textfield',
  48. // '#title' => 'Migrated Files Path',
  49. // '#default_value' => variable_get('redcat_migration_file_path', '/Users/amodi/Sites/redcat.org/sites/redcat.org/files'),
  50. // '#description' => t('Please enter the full path to get to the home directory of the migrating site - the files will be found through the base'),
  51. // '#required' => TRUE,
  52. // );
  53. return system_settings_form($form);
  54. }