You are here

abstract class MigrateDestinationHandler in Migrate 6.2

Same name and namespace in other branches
  1. 7.2 includes/destination.inc \MigrateDestinationHandler

All destination handlers should be derived from MigrateDestinationHandler

Hierarchy

Expanded class hierarchy of MigrateDestinationHandler

3 string references to 'MigrateDestinationHandler'
migrate_handler_invoke_all in ./migrate.module
Invoke any available handlers attached to a given destination type. If any handlers have dependencies defined, they will be invoked after the specified handlers.
migrate_ui_handlers_form in migrate_ui/migrate_ui.pages.inc
Form for reviewing migrations.
_migrate_class_list in ./migrate.module
For a given parent class, identify and instantiate objects for any non-abstract classes derived from the parent, returning an array of the objects indexed by class name. The array will be ordered such that any classes with dependencies are listed…

File

includes/destination.inc, line 105
Defines base for migration destinations.

View source
abstract class MigrateDestinationHandler extends MigrateHandler {

}

Members

Namesort descending Modifiers Type Description Overrides
MigrateHandler::$dependencies protected property List of other handler classes which should be invoked before the current one.
MigrateHandler::$typesHandled protected property List of "types" handled by this handler. Depending on the kind of handler, these may be destination types, field types, etc.
MigrateHandler::getDependencies public function
MigrateHandler::getTypesHandled public function
MigrateHandler::handlesType public function Does this handler handle the given type?
MigrateHandler::registerTypes protected function Register a list of types handled by this class
MigrateHandler::__construct abstract public function 9