Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Browsers.php « DataFiles « modules - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 863114f8d32439c20d0ffc721ec5e18ee2950ee1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php
/**
 * Piwik - Open source web analytics
 * 
 * @link http://piwik.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
 * @version $Id$
 * 
 * @package Piwik_UserSettings
 */

/**
 * Browser list.
 * If you want to add a new entry, please email us at hello at piwik.org
 * 
 */
if(!isset($GLOBALS['Piwik_BrowserList'] ))
{
	$GLOBALS['Piwik_BrowserList'] = array(
					'msie'							=> 'IE',
					'microsoft internet explorer'	=> 'IE',
					'internet explorer'				=> 'IE',
					'netscape6'						=> 'NS',
					'netscape'						=> 'NS',
					'galeon'						=> 'GA',
					'phoenix'						=> 'PX',
					'firefox'						=> 'FF',
					'mozilla firebird'				=> 'FB',
					'firebird'						=> 'FB',
					'seamonkey'						=> 'SM',
					'chimera'						=> 'CH',
					'camino'						=> 'CA',
					'safari'						=> 'SF',
					'k-meleon'						=> 'KM',
					'mozilla'						=> 'MO',
					'opera'							=> 'OP',
					'konqueror'						=> 'KO',
					'icab'							=> 'IC',
					'lynx'							=> 'LX',
					'links'							=> 'LI',
					'ncsa mosaic'					=> 'MC',
					'amaya'							=> 'AM',
					'omniweb'						=> 'OW',
					'hotjava'						=> 'HJ',
					'browsex'						=> 'BX',
					'amigavoyager'					=> 'AV',
					'amiga-aweb'					=> 'AW',
					'ibrowse'						=> 'IB',
					'unknown'						=> 'UNK'
			);	
			
			
	$GLOBALS['Piwik_BrowserList_IdToLabel'] 
		= array_map('ucwords',array_flip($GLOBALS['Piwik_BrowserList']));
	
	$GLOBALS['Piwik_BrowserList_IdToShortLabel'] = $GLOBALS['Piwik_BrowserList_IdToLabel'];
	$GLOBALS['Piwik_BrowserList_IdToShortLabel']['IE'] = "IE";
	$GLOBALS['Piwik_BrowserList_IdToShortLabel']['FB'] = "Firebird";
}