View source
<?php
if (!class_exists('MigrateFieldHandler')) {
return;
}
function addressfield_migrate_api() {
$api = array(
'api' => 2,
'field handlers' => array(
'MigrateAddressFieldHandler',
),
);
return $api;
}
class MigrateAddressFieldHandler extends MigrateFieldHandler {
public function __construct() {
$this
->registerTypes(array(
'addressfield',
));
}
public function fields() {
$fields = array(
'administrative_area' => t('<a href="@doc">The administrative area of ' . 'this address (i.e. State/Province)</a>', array(
'@doc' => 'http://drupal.org/node/1996546#administrative_area',
)),
'sub_administrative_area' => t('<a href="@doc">The sub administrative ' . 'area of this address</a>', array(
'@doc' => 'http://drupal.org/node/1996546#sub_administrative_area',
)),
'locality' => t('<a href="@doc">The locality of this address (i.e. ' . 'City)</a>', array(
'@doc' => 'http://drupal.org/node/1996546#locality',
)),
'dependent_locality' => t('<a href="@doc">The dependent locality of ' . 'this address</a>', array(
'@doc' => 'http://drupal.org/node/1996546#dependent_locality',
)),
'postal_code' => t('<a href="@doc">The postal code of this address</a>', array(
'@doc' => 'http://drupal.org/node/1996546#postal_code',
)),
'thoroughfare' => t('<a href="@doc">The thoroughfare of this address ' . '(i.e. Street address)</a>', array(
'@doc' => 'http://drupal.org/node/1996546#thoroughfare',
)),
'premise' => t('<a href="@doc">The premise of this address (i.e. Apartment / Suite number)</a>', array(
'@doc' => 'http://drupal.org/node/1996546#premise',
)),
'sub_premise' => t('<a href="@doc">The sub_premise of this address</a>', array(
'@doc' => 'http://drupal.org/node/1996546#sub_premise',
)),
'organisation_name' => t('<a href="@doc">Contents of a primary ' . 'OrganisationName element in the xNL XML</a>', array(
'@doc' => 'http://drupal.org/node/1996546#organisation_name',
)),
'name_line' => t('<a href="@doc">Contents of a primary NameLine element ' . 'in the xNL XML</a>', array(
'@doc' => 'http://drupal.org/node/1996546#name_line',
)),
'first_name' => t('<a href="@doc">Contents of the FirstName element of ' . 'a primary PersonName element in the xNL XML</a>', array(
'@doc' => 'http://drupal.org/node/1996546#first_name',
)),
'last_name' => t('<a href="@doc">Contents of the LastName element of a ' . 'primary PersonName element in the xNL XML</a>', array(
'@doc' => 'http://drupal.org/node/1996546#last_name',
)),
'data' => t('<a href="@doc">Additional data for this address</a>', array(
'@doc' => 'http://drupal.org/node/1996546#data',
)),
);
return $fields;
}
public function prepare($entity, array $field_info, array $instance, array $values) {
$arguments = array();
if (isset($values['arguments'])) {
$arguments = array_filter($values['arguments']);
unset($values['arguments']);
}
$language = $this
->getFieldLanguage($entity, $field_info, $arguments);
$delta = 0;
foreach ($values as $value) {
$return[$language][$delta] = array(
'country' => $value,
) + $this
->prepareArguments($arguments, $field_info, $delta);
$delta++;
}
return isset($return) ? $return : NULL;
}
protected function prepareArguments(array $arguments, array $field_info, $delta) {
$result = array();
$data = array();
foreach ($arguments as $column_key => $column_value) {
$value = NULL;
if (is_array($arguments[$column_key])) {
if (!empty($arguments[$column_key][$delta])) {
$value = $arguments[$column_key][$delta];
}
}
else {
$value = $arguments[$column_key];
}
if ($value) {
if (isset($field_info['columns'][$column_key])) {
$result[$column_key] = $value;
}
else {
$data[$column_key] = $value;
}
}
}
if (!empty($data)) {
$result['data'] = serialize($data);
}
return $result;
}
}