Code
Explorer
You are a developer and looking for Shopware projects?
Apply Now!
setCustomerScope example
$shop
->
setLocale
(
$this
->localeHydrator->
hydrate
(
$data
)
)
;
$parent
=
$data
;
if
(
$data
[
'parent'
]
)
{
$parent
=
$data
[
'parent'
]
;
}
$shop
->
setTemplate
(
$this
->templateHydrator->
hydrate
(
$parent
)
)
;
$shop
->
setParentId
(
(int)
$parent
[
'__shop_id'
]
)
;
$shop
->
setHost
(
$parent
[
'__shop_host'
]
)
;
$shop
->
setPath
(
$parent
[
'__shop_base_path'
]
)
;
$shop
->
setCustomerScope
(
(bool)
$parent
[
'__shop_customer_scope'
]
)
;
$shop
->
setUrl
(
$data
[
'__shop_base_url'
]
?:
$parent
[
'__shop_base_url'
]
)
;
$shop
->
setSecure
(
(bool)
$parent
[
'__shop_secure'
]
)
;
$hosts
=
[
]
;
if
(
$parent
[
'__shop_hosts'
]
)
{
$hosts
=
explode
(
'\n',
$parent
[
'__shop_hosts'
]
)
;
$hosts
=
array_unique
(
array_values
(
array_filter
(
$hosts
)
)
)
;
}
$shop
->
setHosts
(
$hosts
)
;
if
(
$data
[
'__shopAttribute_id'
]
)
{
$shop
= DetachedShop::
createFromShop
(
$shop
)
;
$main
=
$shop
->
getMain
(
)
;
if
(
$main
!== null
)
{
$main
= DetachedShop::
createFromShop
(
$main
)
;
$shop
->
setHost
(
$main
->
getHost
(
)
)
;
$shop
->
setSecure
(
$main
->
getSecure
(
)
)
;
$shop
->
setBasePath
(
$shop
->
getBasePath
(
)
?:
$main
->
getBasePath
(
)
)
;
$shop
->
setTemplate
(
$main
->
getTemplate
(
)
)
;
$shop
->
setCurrencies
(
$main
->
getCurrencies
(
)
)
;
$shop
->
setChildren
(
$main
->
getChildren
(
)
)
;
$shop
->
setCustomerScope
(
$main
->
getCustomerScope
(
)
)
;
}
$shop
->
setBaseUrl
(
$shop
->
getBaseUrl
(
)
?:
$shop
->
getBasePath
(
)
)
;
return
DetachedShop::
createFromShop
(
$shop
)
;
}
/** * returns the right shop depending on the request object * * @param array[] $shops * @param string $requestPath * * @return array|null */
protected
$customerScope
;
/** * @return Shop */
public
static
function
createFromShopEntity
(
ShopEntity
$shop
)
{
$struct
=
new
self
(
)
;
$struct
->
setId
(
$shop
->
getId
(
)
)
;
$struct
->
setParentId
(
$shop
->
getMain
(
)
?
$shop
->
getMain
(
)
->
getId
(
)
:
$shop
->
getId
(
)
)
;
$struct
->
setCustomerScope
(
$shop
->
getMain
(
)
?
$shop
->
getMain
(
)
->
getCustomerScope
(
)
:
$shop
->
getCustomerScope
(
)
)
;
$struct
->
setIsDefault
(
$shop
->
getDefault
(
)
)
;
$struct
->
setName
(
$shop
->
getName
(
)
)
;
$struct
->
setHost
(
$shop
->
getHost
(
)
)
;
$struct
->
setPath
(
$shop
->
getBasePath
(
)
)
;
$struct
->
setUrl
(
$shop
->
getBaseUrl
(
)
)
;
$struct
->
setSecure
(
$shop
->
getSecure
(
)
)
;
if
(
$shop
->
getCategory
(
)
)
{
$struct
->
setCategory
(
Category::
createFromCategoryEntity
(
$shop
->
getCategory
(
)
)
)
;
}