mirror of
https://github.com/DanielSiepmann/tracking.git
synced 2024-11-16 03:06:09 +01:00
Daniel Siepmann
b83093e023
* Update everything for TYPO3 v12 + v13 --------- Co-authored-by: Daniel Siepmann <daniel.siepmann@codappix.com>
29 lines
803 B
PHP
29 lines
803 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use DanielSiepmann\Tracking\Middleware\Pageview;
|
|
use DanielSiepmann\Tracking\Middleware\Recordview;
|
|
|
|
return [
|
|
'frontend' => [
|
|
'danielsiepmann/tracking/pageview' => [
|
|
'target' => Pageview::class,
|
|
'before' => [
|
|
'typo3/cms-frontend/content-length-headers',
|
|
],
|
|
'after' => [
|
|
'typo3/cms-frontend/shortcut-and-mountpoint-redirect',
|
|
],
|
|
],
|
|
'danielsiepmann/tracking/recordview' => [
|
|
'target' => Recordview::class,
|
|
'before' => [
|
|
'typo3/cms-frontend/content-length-headers',
|
|
],
|
|
'after' => [
|
|
'typo3/cms-frontend/shortcut-and-mountpoint-redirect',
|
|
],
|
|
],
|
|
],
|
|
];
|