You are here

public function MigrateUIWizard::getExtender in Migrate 7.2

File

migrate_ui/migrate_ui.wizard.inc, line 224
Migration wizard framework.

Class

MigrateUIWizard
The base class for migration wizards. Extend this class to implement a wizard UI for importing into Drupal from a given source format (Drupal, WordPress, etc.).

Code

public function getExtender($extender_class) {
  if (isset($this->extenders[$extender_class])) {
    return $this->extenders[$extender_class];
  }
  else {
    return NULL;
  }
}