Code
Explorer
You are a developer and looking for Shopware projects?
Apply Now!
skipCompile example
$this
->
doPostActivate
(
$event
)
;
}
public
function
pluginPostDeactivateFailed
(
PluginPostDeactivationFailedEvent
$event
)
: void
{
$this
->
doPostActivate
(
$event
)
;
}
public
function
pluginUpdate
(
PluginPreUpdateEvent
$event
)
: void
{
if
(
$this
->
skipCompile
(
$event
->
getContext
(
)
->
getContext
(
)
)
)
{
return
;
}
$pluginName
=
$event
->
getPlugin
(
)
->
getName
(
)
;
$config
=
$this
->storefrontPluginRegistry->
getConfigurations
(
)
->
getByTechnicalName
(
$pluginName
)
;
if
(
!
$config
)
{
return
;
}
$this
->themeLifecycleHandler->
handleThemeInstallOrUpdate
(