abstract class MigrateDestinationHandler in Migrate 6.2
Same name and namespace in other branches
- 7.2 includes/destination.inc \MigrateDestinationHandler
All destination handlers should be derived from MigrateDestinationHandler
Hierarchy
- class \MigrateHandler
- class \MigrateDestinationHandler
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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
MigrateHandler:: |
protected | property | List of other handler classes which should be invoked before the current one. | |
MigrateHandler:: |
protected | property | List of "types" handled by this handler. Depending on the kind of handler, these may be destination types, field types, etc. | |
MigrateHandler:: |
public | function | ||
MigrateHandler:: |
public | function | ||
MigrateHandler:: |
public | function | Does this handler handle the given type? | |
MigrateHandler:: |
protected | function | Register a list of types handled by this class | |
MigrateHandler:: |
abstract public | function | 9 |