Code
Explorer
You are a developer and looking for Shopware projects?
Apply Now!
updateLog example
/** * Refresh shop statistic */
public
function
refreshStatisticAction
(
)
: void
{
$request
=
$this
->
Request
(
)
;
$response
=
$this
->
Response
(
)
;
/** @var Shopware_Plugins_Frontend_Statistics_Bootstrap $plugin */
$plugin
=
Shopware
(
)
->
Plugins
(
)
->
Frontend
(
)
->
Statistics
(
)
;
$plugin
->
updateLog
(
$request
,
$response
)
;
}
/** * Get cms menu */
public
function
menuAction
(
)
: void
{
$this
->
View
(
)
->
assign
(
'sGroup',
$this
->
Request
(
)
->
getParam
(
'group'
)
)
;
$plugin
=
Shopware
(
)
->
Plugins
(
)
->
Core
(
)
->
ControllerBase
(
)
;
$this
->
View
(
)
->
assign
(
'sMenu',
$plugin
->
getMenu
(
)
)
;
}