mirror of
https://github.com/DanielSiepmann/tracking.git
synced 2024-11-15 11:06:08 +01:00
27 lines
715 B
PHP
27 lines
715 B
PHP
|
<?php
|
||
|
|
||
|
return [
|
||
|
'pages' => [
|
||
|
[
|
||
|
'pid' => '0',
|
||
|
'uid' => '1',
|
||
|
],
|
||
|
],
|
||
|
'tx_tracking_pageview' => [
|
||
|
[
|
||
|
'pid' => '1',
|
||
|
'uid' => '1',
|
||
|
'url' => 'https://example.com/path',
|
||
|
'user_agent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.116 Safari/537.36',
|
||
|
'operating_system' => '',
|
||
|
],
|
||
|
[
|
||
|
'pid' => '1',
|
||
|
'uid' => '2',
|
||
|
'url' => 'https://example.com/path',
|
||
|
'user_agent' => 'Dalvik/2.1.0 (Linux; U; Android 9; ONEPLUS A3003 Build/PKQ1.181203.001)',
|
||
|
'operating_system' => '',
|
||
|
],
|
||
|
],
|
||
|
];
|