You are here

class MigrateFormattedNumberFieldHandler in Migrate Extras 6.2

Field handler.

Hierarchy

Expanded class hierarchy of MigrateFormattedNumberFieldHandler

File

./formatted_number.inc, line 11
Support for the Formatted number module.

View source
class MigrateFormattedNumberFieldHandler extends MigrateValueFieldHandler {
  public function __construct() {
    $this
      ->registerTypes(array(
      'formatted_tinyint',
      'formatted_tinyint_unsigned',
      'formatted_smallint',
      'formatted_smallint_unsigned',
      'formatted_mediumint',
      'formatted_mediumint_unsigned',
      'formatted_integer',
      'formatted_integer_unsigned',
      'formatted_bigint',
      'formatted_bigint_unsigned',
      'formatted_decimal',
      'formatted_float',
    ));
  }

}

Members

Namesort descending Modifiers Type Description Overrides
MigrateFormattedNumberFieldHandler::__construct public function Construct a simple field handler. Overrides MigrateValueFieldHandler::__construct
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
MigrateSimpleFieldHandler::$fieldValueKey protected property
MigrateSimpleFieldHandler::$skipEmpty protected property
MigrateSimpleFieldHandler::notNull protected function Returns TRUE only for values which are not NULL.
MigrateSimpleFieldHandler::prepare public function