| 123456789101112131415161718192021222324252627 |
- <?php
- use Opentalent\OtStats\Controller\OtStatsController;
- /**
- * Registers the statistics backend module
- */
- return [
- 'web_OtStatsOtStats' => [
- 'parent' => 'web',
- 'position' => ['after' => 'web_OtTemplatingOtcustomizer'],
- 'access' => 'user,group',
- 'icon' => 'EXT:ot_stats/Resources/Public/Icons/pie-chart.png',
- 'path' => '/module/web/OtStats',
- 'labels' => 'LLL:EXT:ot_stats/Resources/Private/Language/locallang_mod.xlf',
- 'extensionName' => 'OtStats',
- 'controllerActions' => [
- OtStatsController::class => [
- 'index',
- 'askForActivationConfirmation',
- 'askForDeactivationConfirmation',
- 'enableStats',
- 'disableStats',
- ],
- ],
- ],
- ];
|