2020-02-07 10:27:07 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return [
|
|
|
|
'frontend' => [
|
2020-07-29 10:07:14 +02:00
|
|
|
'danielsiepmann/tracking/pageview' => [
|
2020-02-07 10:27:07 +01:00
|
|
|
'target' => \DanielSiepmann\Tracking\Middleware\Pageview::class,
|
|
|
|
'before' => [
|
|
|
|
'typo3/cms-frontend/content-length-headers',
|
|
|
|
],
|
|
|
|
'after' => [
|
|
|
|
'typo3/cms-frontend/shortcut-and-mountpoint-redirect',
|
|
|
|
],
|
|
|
|
],
|
2020-07-29 10:07:14 +02:00
|
|
|
'danielsiepmann/tracking/recordview' => [
|
|
|
|
'target' => \DanielSiepmann\Tracking\Middleware\Recordview::class,
|
|
|
|
'before' => [
|
|
|
|
'typo3/cms-frontend/content-length-headers',
|
|
|
|
],
|
|
|
|
'after' => [
|
|
|
|
'typo3/cms-frontend/shortcut-and-mountpoint-redirect',
|
|
|
|
],
|
|
|
|
],
|
2020-02-07 10:27:07 +01:00
|
|
|
],
|
|
|
|
];
|