I am trying to extend migrate_d2d module in D7 to migrate. I have wrote in node.inc

<?php

  abstract class AnatomyprepNodeMigration extends DrupalNode7Migration {
  public function __construct(array $arguments) {
    parent::__construct($arguments);
  }
}

By doing this, i have got following error. Fatal error: Class 'DrupalNodeMigration' not found. while re-registering migration classes.

Comments

qsekhar created an issue. See original summary.

qsekhar’s picture

It was a registry issue, i have re registered the registry of that app and it is solved now.

Thank you.

qsekhar’s picture

Status: Active » Closed (works as designed)