migrate_extras_pathauto.module 213 B

12345678910111213
  1. <?php
  2. include_once('migrate_extras_pathauto.features.inc');
  3. /*
  4. * Implementation of hook_migrate_api().
  5. */
  6. function migrate_extras_pathauto_migrate_api() {
  7. $api = array(
  8. 'api' => 2,
  9. );
  10. return $api;
  11. }