You are here

public function MigrateHandler::handlesType in Migrate 6.2

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

Does this handler handle the given type?

Parameters

boolean $type:

File

includes/handler.inc, line 52
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)]);
}