You are here

public function MigrateDefaultFieldHandler::handlesType in Migrate 7.2

Overrides MigrateHandler::handlesType().

Parameters

string $type:

Return value

bool

Overrides MigrateHandler::handlesType

File

plugins/destinations/fields.inc, line 231
Support for processing entity fields

Class

MigrateDefaultFieldHandler
A fallback field handler to do basic copying of field data.

Code

public function handlesType($type) {

  // We claim to handle any type.
  return TRUE;
}