Code
Explorer
You are a developer and looking for Shopware projects?
Apply Now!
recompileThemesIfNecessary example
StorefrontPluginConfigurationCollection
$configurationCollection
,
Context
$context
)
: void
{
$themeId
= null;
if
(
$config
->
getIsTheme
(
)
)
{
$this
->themeLifecycleService->
refreshTheme
(
$config
,
$context
)
;
$themeData
=
$this
->
getThemeDataByTechnicalName
(
$config
->
getTechnicalName
(
)
)
;
$themeId
=
$themeData
->
getId
(
)
;
$this
->
changeThemeActive
(
$themeData
, true,
$context
)
;
}
$this
->
recompileThemesIfNecessary
(
$config
,
$context
,
$configurationCollection
,
$themeId
)
;
}
public
function
handleThemeUninstall
(
StorefrontPluginConfiguration
$config
, Context
$context
)
: void
{
$themeId
= null;
if
(
$config
->
getIsTheme
(
)
)
{
$themeData
=
$this
->
getThemeDataByTechnicalName
(
$config
->
getTechnicalName
(
)
)
;
$themeId
=
$themeData
->
getId
(
)
;
// throw an exception if theme is still assigned to a sales channel
$this
->
validateThemeAssignment
(
$themeId
)
;