->
getListArray($this->
get('session'
)->
get('sUserId'
));
$activeAddressId =
$this->
Request()->
getParam('id'
);
if (!
empty($activeAddressId)) { foreach ($addresses as $key =>
$address) { if ($address['id'
] ==
$activeAddressId) { unset($addresses[$key]);
} } } $addresses =
$this->
translateCountries($addresses);
$extraData =
array_map(static function D
$data) { // only allow alphanumeric characters, commas and spaces
return preg_replace('/[^A-Za-z0-9 ,]/', '',
$data);
},
$extraData);
$this->
View()->
assign('addresses',
$addresses);
$this->
View()->
assign('activeAddressId',
$activeAddressId);
$this->
View()->
assign('extraData',
$extraData);
$this->
View()->
assign('isShippingRequest',
$this->
isShippingRequest());
}