Code
Explorer
You are a developer and looking for Shopware projects?
Apply Now!
setResolveMapping example
if
(
$this
->
isInclude
(
$file
->
getFilepath
(
)
)
)
{
continue
;
}
$file
->
setFilepath
(
$this
->themeFileImporter->
getRealPath
(
$file
->
getFilepath
(
)
)
)
;
$mapping
=
$file
->
getResolveMapping
(
)
;
foreach
(
$mapping
as
$key
=>
$val
)
{
$mapping
[
$key
]
=
$this
->themeFileImporter->
getRealPath
(
$val
)
;
}
$file
->
setResolveMapping
(
$mapping
)
;
}
}
}