You are here

class MigrateCountryFieldHandler in Countries 8

Same name and namespace in other branches
  1. 7.2 countries.migrate.inc \MigrateCountryFieldHandler

Custom extended MigrateFieldHandler class.

Hierarchy

Expanded class hierarchy of MigrateCountryFieldHandler

1 string reference to 'MigrateCountryFieldHandler'
countries_migrate_api in ./countries.module
Implements hook_migrate_api().

File

./countries.migrate.inc, line 11
Base integration with the Migrate API class.

View source
class MigrateCountryFieldHandler extends MigrateFieldHandler {
  public function __construct() {
    $this
      ->registerTypes(array(
      'country',
    ));
  }
  public function prepare($entity, array $field_info, array $instance, array $values) {
    $arguments = isset($values['arguments']) ? $values['arguments'] : array();
    $language = $this
      ->getFieldLanguage($entity, $field_info, $arguments);
    $delta = 0;
    foreach ($values as $value) {
      $return[$language][$delta]['iso2'] = $value;
      $delta++;
    }
    return isset($return) ? $return : NULL;
  }

}

Members