Code
Explorer
You are a developer and looking for Shopware projects?
Apply Now!
collectInheritanceCss example
public
function
collectLessDefinitions
(
Shop\Template
$template
, Shop\Shop
$shop
)
{
$inheritances
=
$this
->inheritance->
buildInheritances
(
$template
)
;
$definitions
=
$this
->
collectInheritanceLess
(
$inheritances
[
'bare'
]
)
;
$definitions
=
array_merge
(
$definitions
,
$this
->
collectInheritanceCss
(
$inheritances
[
'bare'
]
)
)
;
$definitions
=
array_merge
(
$definitions
,
$this
->
collectPluginLess
(
$template
,
$shop
)
)
;
$definitions
=
array_merge
(
$definitions
,
$this
->
collectPluginCss
(
$template
,
$shop
)
)
;