You are here

class MigrateEmailFieldHandler in Migrate 6.2

Hierarchy

Expanded class hierarchy of MigrateEmailFieldHandler

1 string reference to 'MigrateEmailFieldHandler'
migrate_migrate_api in ./migrate.module

File

plugins/destinations/fields.inc, line 528
Support for processing CCK fields

View source
class MigrateEmailFieldHandler extends MigrateFieldHandler {
  public function __construct() {
    $this
      ->registerTypes(array(
      'email',
    ));
  }

  // Copied from ValueFieldHandler::prepare except the propname is email.
  public function prepare($entity, array $instance, array $values) {

    // Setup the standard Field API array for saving.
    $delta = 0;
    foreach ($values as $value) {
      $return[$delta]['email'] = $value;
      $delta++;
    }
    if (!isset($return)) {
      $return = NULL;
    }
    return $return;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
MigrateEmailFieldHandler::prepare public function
MigrateEmailFieldHandler::__construct public function Overrides MigrateHandler::__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