Code
Explorer
You are a developer and looking for Shopware projects?
Apply Now!
setZipCode example
public
function
fromAddress
(
Address
$address
)
{
$this
->
setCompany
(
(string)
$address
->
getCompany
(
)
)
;
$this
->
setDepartment
(
(string)
$address
->
getDepartment
(
)
)
;
$this
->
setSalutation
(
(string)
$address
->
getSalutation
(
)
)
;
$this
->
setFirstName
(
(string)
$address
->
getFirstname
(
)
)
;
$this
->
setLastName
(
(string)
$address
->
getLastname
(
)
)
;
$this
->
setStreet
(
(string)
$address
->
getStreet
(
)
)
;
$this
->
setCity
(
(string)
$address
->
getCity
(
)
)
;
$this
->
setZipCode
(
(string)
$address
->
getZipcode
(
)
)
;
$this
->
setAdditionalAddressLine1
(
(string)
$address
->
getAdditionalAddressLine1
(
)
)
;
$this
->
setAdditionalAddressLine2
(
(string)
$address
->
getAdditionalAddressLine2
(
)
)
;
$this
->
setCountry
(
$address
->
getCountry
(
)
)
;
$this
->
setPhone
(
$address
->
getPhone
(
)
)
;
$this
->
setTitle
(
$address
->
getTitle
(
)
)
;
if
(
$address
->
getState
(
)
)
{
$this
->
setState
(
$address
->
getState
(
)
)
;
}
else
{
$this
->
setState
(
null
)
;
}
public
function
fromAddress
(
Address
$address
)
{
$this
->
setCompany
(
(string)
$address
->
getCompany
(
)
)
;
$this
->
setDepartment
(
(string)
$address
->
getDepartment
(
)
)
;
$this
->
setSalutation
(
(string)
$address
->
getSalutation
(
)
)
;
$this
->
setFirstName
(
(string)
$address
->
getFirstname
(
)
)
;
$this
->
setLastName
(
(string)
$address
->
getLastname
(
)
)
;
$this
->
setStreet
(
(string)
$address
->
getStreet
(
)
)
;
$this
->
setCity
(
(string)
$address
->
getCity
(
)
)
;
$this
->
setZipCode
(
(string)
$address
->
getZipcode
(
)
)
;
$this
->
setAdditionalAddressLine1
(
(string)
$address
->
getAdditionalAddressLine1
(
)
)
;
$this
->
setAdditionalAddressLine2
(
(string)
$address
->
getAdditionalAddressLine2
(
)
)
;
$this
->
setCountry
(
$address
->
getCountry
(
)
)
;
$this
->
setPhone
(
(string)
$address
->
getPhone
(
)
)
;
$this
->
setVatId
(
(string)
$address
->
getVatId
(
)
)
;
$this
->
setTitle
(
$address
->
getTitle
(
)
)
;
if
(
$address
->
getState
(
)
)
{
$this
->
setState
(
$address
->
getState
(
)
)
;
}
else
{
$this
->
setState
(
null
)
;
}