Code
Explorer
You are a developer and looking for Shopware projects?
Apply Now!
setPhone example
$address
->
setDepartment
(
$data
[
'__address_department'
]
)
;
$address
->
setSalutation
(
$data
[
'__address_salutation'
]
)
;
$address
->
setTitle
(
$data
[
'__address_title'
]
)
;
$address
->
setFirstname
(
$data
[
'__address_firstname'
]
)
;
$address
->
setLastname
(
$data
[
'__address_lastname'
]
)
;
$address
->
setStreet
(
$data
[
'__address_street'
]
)
;
$address
->
setZipcode
(
$data
[
'__address_zipcode'
]
)
;
$address
->
setCity
(
$data
[
'__address_city'
]
)
;
$address
->
setCountryId
(
(int)
$data
[
'__address_country_id'
]
)
;
$address
->
setStateId
(
(int)
$data
[
'__address_state_id'
]
)
;
$address
->
setVatId
(
$data
[
'__address_ustid'
]
)
;
$address
->
setPhone
(
$data
[
'__address_phone'
]
)
;
$address
->
setAdditionalAddressLine1
(
$data
[
'__address_additional_address_line1'
]
)
;
$address
->
setAdditionalAddressLine2
(
$data
[
'__address_additional_address_line2'
]
)
;
if
(
$address
->
getCountryId
(
)
)
{
$address
->
setCountry
(
$this
->countryHydrator->
hydrateCountry
(
$data
)
)
;
}
if
(
$address
->
getStateId
(
)
)
{
$address
->
setState
(
$this
->countryHydrator->
hydrateState
(
$data
)
)
;
$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
)
;
}
$attributeData
=
Shopware
(
)
->
Models
(
)
->
toArray
(
$address
->
getAttribute
(
)
)
;
$this
->
setAttribute
(
$attributeData
)
;
}
$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
)
;
}
$attributeData
=
Shopware
(
)
->
Models
(
)
->
toArray
(
$address
->
getAttribute
(
)
)
;
$this
->
setAttribute
(
$attributeData
)
;
}