Route and Results buttons updated.
[speedfreak] / Server / system / config / user_agents.php
1 <?php defined('SYSPATH') OR die('No direct access allowed.');
2 /**
3  * @package  Core
4  *
5  * This file contains four arrays of user agent data.  It is used by the
6  * User Agent library to help identify browser, platform, robot, and
7  * mobile device data. The array keys are used to identify the device
8  * and the array values are used to set the actual name of the item.
9  */
10 $config['platform'] = array
11 (
12         'windows nt 6.0' => 'Windows Vista',
13         'windows nt 5.2' => 'Windows 2003',
14         'windows nt 5.0' => 'Windows 2000',
15         'windows nt 5.1' => 'Windows XP',
16         'windows nt 4.0' => 'Windows NT',
17         'winnt4.0'       => 'Windows NT',
18         'winnt 4.0'      => 'Windows NT',
19         'winnt'          => 'Windows NT',
20         'windows 98'     => 'Windows 98',
21         'win98'          => 'Windows 98',
22         'windows 95'     => 'Windows 95',
23         'win95'          => 'Windows 95',
24         'windows'        => 'Unknown Windows OS',
25         'os x'           => 'Mac OS X',
26         'intel mac'      => 'Intel Mac',
27         'ppc mac'        => 'PowerPC Mac',
28         'powerpc'        => 'PowerPC',
29         'ppc'            => 'PowerPC',
30         'cygwin'         => 'Cygwin',
31         'linux'          => 'Linux',
32         'debian'         => 'Debian',
33         'openvms'        => 'OpenVMS',
34         'sunos'          => 'Sun Solaris',
35         'amiga'          => 'Amiga',
36         'beos'           => 'BeOS',
37         'apachebench'    => 'ApacheBench',
38         'freebsd'        => 'FreeBSD',
39         'netbsd'         => 'NetBSD',
40         'bsdi'           => 'BSDi',
41         'openbsd'        => 'OpenBSD',
42         'os/2'           => 'OS/2',
43         'warp'           => 'OS/2',
44         'aix'            => 'AIX',
45         'irix'           => 'Irix',
46         'osf'            => 'DEC OSF',
47         'hp-ux'          => 'HP-UX',
48         'hurd'           => 'GNU/Hurd',
49         'unix'           => 'Unknown Unix OS',
50 );
51
52 // The order of this array should NOT be changed. Many browsers return
53 // multiple browser types so we want to identify the sub-type first.
54 $config['browser'] = array
55 (
56         'Opera'             => 'Opera',
57         'MSIE'              => 'Internet Explorer',
58         'Internet Explorer' => 'Internet Explorer',
59         'Shiira'            => 'Shiira',
60         'Firefox'           => 'Firefox',
61         'Chimera'           => 'Chimera',
62         'Phoenix'           => 'Phoenix',
63         'Firebird'          => 'Firebird',
64         'Camino'            => 'Camino',
65         'Netscape'          => 'Netscape',
66         'OmniWeb'           => 'OmniWeb',
67         'Chrome'            => 'Chrome',
68         'Safari'            => 'Safari',
69         'Konqueror'         => 'Konqueror',
70         'Epiphany'          => 'Epiphany',
71         'Galeon'            => 'Galeon',
72         'Mozilla'           => 'Mozilla',
73         'icab'              => 'iCab',
74         'lynx'              => 'Lynx',
75         'links'             => 'Links',
76         'hotjava'           => 'HotJava',
77         'amaya'             => 'Amaya',
78         'IBrowse'           => 'IBrowse',
79 );
80
81 $config['mobile'] = array
82 (
83         'mobileexplorer' => 'Mobile Explorer',
84         'openwave'       => 'Open Wave',
85         'opera mini'     => 'Opera Mini',
86         'operamini'      => 'Opera Mini',
87         'elaine'         => 'Palm',
88         'palmsource'     => 'Palm',
89         'digital paths'  => 'Palm',
90         'avantgo'        => 'Avantgo',
91         'xiino'          => 'Xiino',
92         'palmscape'      => 'Palmscape',
93         'nokia'          => 'Nokia',
94         'ericsson'       => 'Ericsson',
95         'blackBerry'     => 'BlackBerry',
96         'motorola'       => 'Motorola',
97         'iphone'         => 'iPhone',
98         'android'        => 'Android',
99 );
100
101 // There are hundreds of bots but these are the most common.
102 $config['robot'] = array
103 (
104         'googlebot'   => 'Googlebot',
105         'msnbot'      => 'MSNBot',
106         'slurp'       => 'Inktomi Slurp',
107         'yahoo'       => 'Yahoo',
108         'askjeeves'   => 'AskJeeves',
109         'fastcrawler' => 'FastCrawler',
110         'infoseek'    => 'InfoSeek Robot 1.0',
111         'lycos'       => 'Lycos',
112 );