You are here

class MigratePhoneFieldHandler in Phone 7

Same name and namespace in other branches
  1. 7.2 phone.migrate.inc \MigratePhoneFieldHandler

Wrap Migrate's simple field handler for 'phone' fields.

Hierarchy

Expanded class hierarchy of MigratePhoneFieldHandler

File

./phone.migrate.inc, line 34
phone.migrate.inc Code to implement hook_content_migrate_field_alter, content_migrate_instance_alter() and content_migrate_data_record_alter() on behalf of the former phone module, moved into a separate file for efficiency.

View source
class MigratePhoneFieldHandler extends MigrateSimpleFieldHandler {
  public function __construct() {
    $this
      ->registerTypes(array(
      'phone',
    ));
  }

}

Members

Namesort descending Modifiers Type Description Overrides
MigrateFieldHandler::getFieldLanguage function Determine the language of the field.
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? 1
MigrateHandler::registerTypes protected function Register a list of types handled by this class
MigratePhoneFieldHandler::__construct public function Construct a simple field handler. Overrides MigrateSimpleFieldHandler::__construct
MigrateSimpleFieldHandler::$fieldValueKey protected property
MigrateSimpleFieldHandler::$skipEmpty protected property
MigrateSimpleFieldHandler::notNull protected function Returns TRUE only for values which are not NULL. 2
MigrateSimpleFieldHandler::prepare public function