You are here

public function MigrateHandler::handlesType in Migrate 7.2

Same name and namespace in other branches
  1. 6.2 includes/handler.inc \MigrateHandler::handlesType()

Does this handler handle the given type?

Parameters

boolean $type:

1 method overrides MigrateHandler::handlesType()
MigrateDefaultFieldHandler::handlesType in plugins/destinations/fields.inc
Overrides MigrateHandler::handlesType().

File

includes/handler.inc, line 56
Defines the base class for destination handlers.

Class

MigrateHandler
Abstract base class for destination handlers. Handler objects are expected to implement appropriate methods (e.g., prepare, complete, or fields).

Code

public function handlesType($type) {
  return isset($this->typesHandled[strtolower($type)]);
}