@@ -132,6 +132,11 @@ class StatsAdminController extends BackendController | |||
'data' => $data, | |||
]); | |||
} | |||
public function actionMatomo() | |||
{ | |||
return $this->render('matomo'); | |||
} | |||
} | |||
?> |
@@ -127,6 +127,7 @@ $userManager = $this->getUserManager(); | |||
'items' => [ | |||
['label' => 'Chiffre d\'affaire', 'icon' => 'line-chart', 'url' => ['/stats-admin/turnover'], 'visible' => $userManager->isCurrentAdmin()], | |||
['label' => 'Commandes clients', 'icon' => 'calendar', 'url' => ['/stats-admin/customer-orders'], 'visible' => $userManager->isCurrentAdmin()], | |||
['label' => 'Matomo', 'icon' => 'line-chart', 'url' => ['/stats-admin/matomo'], 'visible' => $userManager->isCurrentAdmin()], | |||
], | |||
], | |||
@@ -0,0 +1,8 @@ | |||
<?php | |||
$this->setTitle('Statistiques Matomo') ; | |||
$this->addBreadcrumb('Statistiques Matomo') ; | |||
?> | |||
<iframe id="matomoframe" src="<?= Yii::$app->params['matomoWidgetDashbordUrl']; ?>" frameborder="0" marginheight="0" marginwidth="0" width="100%" height="800px"></iframe> |