You are here

public function WordPressMigrateWizard::__construct in WordPress Migrate 7.2

Lay out the basic steps of the wizard.

Overrides MigrateUIWizard::__construct

File

./wordpress_migrate.migrate.inc, line 46

Class

WordPressMigrateWizard

Code

public function __construct() {
  parent::__construct();

  //    $this->addStep(t('Overview'), 'overviewForm');
  $this
    ->addStep(t('Upload blog'), 'sourceDataForm');
  $this
    ->addStep(t('Select content to import'), 'contentSelectForm');
  $this
    ->addStep(t('Review'), 'reviewForm');
}