You are here

abstract class MigrateFieldHandler in Migrate 6.2

Same name and namespace in other branches
  1. 7.2 plugins/destinations/fields.inc \MigrateFieldHandler

Hierarchy

Expanded class hierarchy of MigrateFieldHandler

3 string references to 'MigrateFieldHandler'
MigrateFieldsNodeHandler::fields in plugins/destinations/fields.inc
migrate_field_handler_invoke_all in ./migrate.module
Invoke any available handlers attached to a given field 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.

File

plugins/destinations/fields.inc, line 85
Support for processing CCK fields

View source
abstract class MigrateFieldHandler 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