قرینه از
https://github.com/matomo-org/matomo.git
synced 2025-08-22 15:07:44 +00:00

* [Coding Style] Enable rule PSR12.Files.FileHeader * Apply CS * Replace Piwik with Matomo in file headers * Unify file headers (position, no. of lines, https links) * Rebuild dist files * Apply CS * Fix system test that relies on line numbers in a file that had the file header updated --------- Co-authored-by: Stefan Giehl <stefan@matomo.org>
45 خطوط
1.2 KiB
PHP
45 خطوط
1.2 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Matomo - free/libre analytics platform
|
|
*
|
|
* @link https://matomo.org
|
|
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
|
|
*/
|
|
|
|
namespace Piwik\Plugins\DevicesDetection\Columns;
|
|
|
|
use Piwik\Tracker\Request;
|
|
use Piwik\Tracker\Visitor;
|
|
use Piwik\Tracker\Action;
|
|
|
|
class BrowserVersion extends Base
|
|
{
|
|
protected $columnName = 'config_browser_version';
|
|
protected $columnType = 'VARCHAR(20) NULL';
|
|
protected $segmentName = 'browserVersion';
|
|
protected $nameSingular = 'DevicesDetection_BrowserVersion';
|
|
protected $namePlural = 'DevicesDetection_BrowserVersions';
|
|
protected $acceptValues = '1.0, 8.0, etc.';
|
|
protected $type = self::TYPE_TEXT;
|
|
|
|
/**
|
|
* @param Request $request
|
|
* @param Visitor $visitor
|
|
* @param Action|null $action
|
|
* @return mixed
|
|
*/
|
|
public function onNewVisit(Request $request, Visitor $visitor, $action)
|
|
{
|
|
$parser = $this->getUAParser($request->getUserAgent(), $request->getClientHints());
|
|
|
|
$aBrowserInfo = $parser->getClient();
|
|
|
|
if (!empty($aBrowserInfo['version'])) {
|
|
return substr($aBrowserInfo['version'], 0, 20);
|
|
}
|
|
|
|
return '';
|
|
}
|
|
}
|