Version Notes
Updated to Mobile Detect 2.7.7
Download this release
Release Info
Developer | Kathir Vel |
Extension | Optimiseweb_MobileDetect |
Version | 0.1.8 |
Comparing to | |
See all releases |
Code changes from version 0.1.6 to 0.1.8
- app/code/community/Optimiseweb/MobileDetect/Helper/Data.php +3 -4
- app/code/community/Optimiseweb/MobileDetect/Library/Mobile_Detect.php +166 -84
- app/code/community/Optimiseweb/MobileDetect/etc/config.xml +30 -2
- app/etc/modules/Optimiseweb_MobileDetect.xml +1 -1
- app/locale/en_US/Optimiseweb_MobileDetect.csv +0 -0
- package.xml +5 -5
app/code/community/Optimiseweb/MobileDetect/Helper/Data.php
CHANGED
@@ -5,12 +5,11 @@
|
|
5 |
*
|
6 |
* @package Optimiseweb_MobileDetect
|
7 |
* @author Kathir Vel (sid@optimiseweb.co.uk)
|
8 |
-
* @copyright Copyright (c)
|
9 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
10 |
*/
|
11 |
require_once Mage::getModuleDir('', 'Optimiseweb_MobileDetect') . DS . 'Library' . DS . 'Mobile_Detect.php';
|
12 |
|
13 |
-
class Optimiseweb_MobileDetect_Helper_Data extends Mobile_Detect
|
14 |
-
|
15 |
-
|
16 |
}
|
5 |
*
|
6 |
* @package Optimiseweb_MobileDetect
|
7 |
* @author Kathir Vel (sid@optimiseweb.co.uk)
|
8 |
+
* @copyright Copyright (c) 2014 Optimise Web
|
9 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
10 |
*/
|
11 |
require_once Mage::getModuleDir('', 'Optimiseweb_MobileDetect') . DS . 'Library' . DS . 'Mobile_Detect.php';
|
12 |
|
13 |
+
class Optimiseweb_MobileDetect_Helper_Data extends Mobile_Detect {
|
14 |
+
|
|
|
15 |
}
|
app/code/community/Optimiseweb/MobileDetect/Library/Mobile_Detect.php
CHANGED
@@ -1,35 +1,26 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
*
|
4 |
-
*
|
5 |
*
|
6 |
-
*
|
7 |
-
* a copy of this software and associated documentation files (the
|
8 |
-
* "Software"), to deal in the Software without restriction, including
|
9 |
-
* without limitation the rights to use, copy, modify, merge, publish,
|
10 |
-
* distribute, sublicense, and/or sell copies of the Software, and to
|
11 |
-
* permit persons to whom the Software is furnished to do so, subject to
|
12 |
-
* the following conditions:
|
13 |
*
|
14 |
-
*
|
15 |
-
*
|
16 |
*
|
17 |
-
*
|
18 |
-
*
|
19 |
-
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
20 |
-
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
21 |
-
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
22 |
-
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
23 |
-
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
24 |
*
|
|
|
|
|
25 |
*
|
26 |
-
* @
|
27 |
-
*
|
28 |
-
*
|
29 |
-
*
|
30 |
-
*
|
31 |
-
*
|
32 |
-
* @version 2.7.
|
33 |
*/
|
34 |
|
35 |
class Mobile_Detect
|
@@ -73,7 +64,7 @@ class Mobile_Detect
|
|
73 |
/**
|
74 |
* Stores the version number of the current release.
|
75 |
*/
|
76 |
-
const VERSION = '2.7.
|
77 |
|
78 |
/**
|
79 |
* A type for the version() method indicating a string return value.
|
@@ -106,6 +97,43 @@ class Mobile_Detect
|
|
106 |
*/
|
107 |
protected $detectionType = self::DETECTION_TYPE_MOBILE;
|
108 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
109 |
/**
|
110 |
* List of mobile devices (phones).
|
111 |
*
|
@@ -114,12 +142,12 @@ class Mobile_Detect
|
|
114 |
protected static $phoneDevices = array(
|
115 |
'iPhone' => '\biPhone.*Mobile|\biPod', // |\biTunes
|
116 |
'BlackBerry' => 'BlackBerry|\bBB10\b|rim[0-9]+',
|
117 |
-
'HTC' => 'HTC|HTC.*(Sensation|Evo|Vision|Explorer|6800|8100|8900|A7272|S510e|C110e|Legend|Desire|T8282)|APX515CKT|Qtek9090|APA9292KT|HD_mini|Sensation.*Z710e|PG86100|Z715e|Desire.*(A8181|HD)|ADR6200|ADR6400L|ADR6425|001HT|Inspire 4G|Android.*\bEVO\b|T-Mobile G1',
|
118 |
'Nexus' => 'Nexus One|Nexus S|Galaxy.*Nexus|Android.*Nexus.*Mobile',
|
119 |
// @todo: Is 'Dell Streak' a tablet or a phone? ;)
|
120 |
'Dell' => 'Dell.*Streak|Dell.*Aero|Dell.*Venue|DELL.*Venue Pro|Dell Flash|Dell Smoke|Dell Mini 3iX|XCD28|XCD35|\b001DL\b|\b101DL\b|\bGS01\b',
|
121 |
'Motorola' => 'Motorola|\bDroid\b.*Build|DROIDX|Android.*Xoom|HRI39|MOT-|A1260|A1680|A555|A853|A855|A953|A955|A956|Motorola.*ELECTRIFY|Motorola.*i1|i867|i940|MB200|MB300|MB501|MB502|MB508|MB511|MB520|MB525|MB526|MB611|MB612|MB632|MB810|MB855|MB860|MB861|MB865|MB870|ME501|ME502|ME511|ME525|ME600|ME632|ME722|ME811|ME860|ME863|ME865|MT620|MT710|MT716|MT720|MT810|MT870|MT917|Motorola.*TITANIUM|WX435|WX445|XT300|XT301|XT311|XT316|XT317|XT319|XT320|XT390|XT502|XT530|XT531|XT532|XT535|XT603|XT610|XT611|XT615|XT681|XT701|XT702|XT711|XT720|XT800|XT806|XT860|XT862|XT875|XT882|XT883|XT894|XT901|XT907|XT909|XT910|XT912|XT928|XT926|XT915|XT919|XT925',
|
122 |
-
'Samsung' => 'Samsung|SGH-I337|BGT-S5230|GT-B2100|GT-B2700|GT-B2710|GT-B3210|GT-B3310|GT-B3410|GT-B3730|GT-B3740|GT-B5510|GT-B5512|GT-B5722|GT-B6520|GT-B7300|GT-B7320|GT-B7330|GT-B7350|GT-B7510|GT-B7722|GT-B7800|GT-C3010|GT-C3011|GT-C3060|GT-C3200|GT-C3212|GT-C3212I|GT-C3262|GT-C3222|GT-C3300|GT-C3300K|GT-C3303|GT-C3303K|GT-C3310|GT-C3322|GT-C3330|GT-C3350|GT-C3500|GT-C3510|GT-C3530|GT-C3630|GT-C3780|GT-C5010|GT-C5212|GT-C6620|GT-C6625|GT-C6712|GT-E1050|GT-E1070|GT-E1075|GT-E1080|GT-E1081|GT-E1085|GT-E1087|GT-E1100|GT-E1107|GT-E1110|GT-E1120|GT-E1125|GT-E1130|GT-E1160|GT-E1170|GT-E1175|GT-E1180|GT-E1182|GT-E1200|GT-E1210|GT-E1225|GT-E1230|GT-E1390|GT-E2100|GT-E2120|GT-E2121|GT-E2152|GT-E2220|GT-E2222|GT-E2230|GT-E2232|GT-E2250|GT-E2370|GT-E2550|GT-E2652|GT-E3210|GT-E3213|GT-I5500|GT-I5503|GT-I5700|GT-I5800|GT-I5801|GT-I6410|GT-I6420|GT-I7110|GT-I7410|GT-I7500|GT-I8000|GT-I8150|GT-I8160|GT-I8190|GT-I8320|GT-I8330|GT-I8350|GT-I8530|GT-I8700|GT-I8703|GT-I8910|GT-I9000|GT-I9001|GT-I9003|GT-I9010|GT-I9020|GT-I9023|GT-I9070|GT-I9082|GT-I9100|GT-I9103|GT-I9220|GT-I9250|GT-I9300|GT-I9305|GT-I9500|GT-I9505|GT-M3510|GT-M5650|GT-M7500|GT-M7600|GT-M7603|GT-M8800|GT-M8910|GT-N7000|GT-S3110|GT-S3310|GT-S3350|GT-S3353|GT-S3370|GT-S3650|GT-S3653|GT-S3770|GT-S3850|GT-S5210|GT-S5220|GT-S5229|GT-S5230|GT-S5233|GT-S5250|GT-S5253|GT-S5260|GT-S5263|GT-S5270|GT-S5300|GT-S5330|GT-S5350|GT-S5360|GT-S5363|GT-S5369|GT-S5380|GT-S5380D|GT-S5560|GT-S5570|GT-S5600|GT-S5603|GT-S5610|GT-S5620|GT-S5660|GT-S5670|GT-S5690|GT-S5750|GT-S5780|GT-S5830|GT-S5839|GT-S6102|GT-S6500|GT-S7070|GT-S7200|GT-S7220|GT-S7230|GT-S7233|GT-S7250|GT-S7500|GT-S7530|GT-S7550|GT-S7562|GT-S7710|GT-S8000|GT-S8003|GT-S8500|GT-S8530|GT-S8600|SCH-A310|SCH-A530|SCH-A570|SCH-A610|SCH-A630|SCH-A650|SCH-A790|SCH-A795|SCH-A850|SCH-A870|SCH-A890|SCH-A930|SCH-A950|SCH-A970|SCH-A990|SCH-I100|SCH-I110|SCH-I400|SCH-I405|SCH-I500|SCH-I510|SCH-I515|SCH-I600|SCH-I730|SCH-I760|SCH-I770|SCH-I830|SCH-I910|SCH-I920|SCH-I959|SCH-LC11|SCH-N150|SCH-N300|SCH-R100|SCH-R300|SCH-R351|SCH-R400|SCH-R410|SCH-T300|SCH-U310|SCH-U320|SCH-U350|SCH-U360|SCH-U365|SCH-U370|SCH-U380|SCH-U410|SCH-U430|SCH-U450|SCH-U460|SCH-U470|SCH-U490|SCH-U540|SCH-U550|SCH-U620|SCH-U640|SCH-U650|SCH-U660|SCH-U700|SCH-U740|SCH-U750|SCH-U810|SCH-U820|SCH-U900|SCH-U940|SCH-U960|SCS-26UC|SGH-A107|SGH-A117|SGH-A127|SGH-A137|SGH-A157|SGH-A167|SGH-A177|SGH-A187|SGH-A197|SGH-A227|SGH-A237|SGH-A257|SGH-A437|SGH-A517|SGH-A597|SGH-A637|SGH-A657|SGH-A667|SGH-A687|SGH-A697|SGH-A707|SGH-A717|SGH-A727|SGH-A737|SGH-A747|SGH-A767|SGH-A777|SGH-A797|SGH-A817|SGH-A827|SGH-A837|SGH-A847|SGH-A867|SGH-A877|SGH-A887|SGH-A897|SGH-A927|SGH-B100|SGH-B130|SGH-B200|SGH-B220|SGH-C100|SGH-C110|SGH-C120|SGH-C130|SGH-C140|SGH-C160|SGH-C170|SGH-C180|SGH-C200|SGH-C207|SGH-C210|SGH-C225|SGH-C230|SGH-C417|SGH-C450|SGH-D307|SGH-D347|SGH-D357|SGH-D407|SGH-D415|SGH-D780|SGH-D807|SGH-D980|SGH-E105|SGH-E200|SGH-E315|SGH-E316|SGH-E317|SGH-E335|SGH-E590|SGH-E635|SGH-E715|SGH-E890|SGH-F300|SGH-F480|SGH-I200|SGH-I300|SGH-I320|SGH-I550|SGH-I577|SGH-I600|SGH-I607|SGH-I617|SGH-I627|SGH-I637|SGH-I677|SGH-I700|SGH-I717|SGH-I727|SGH-i747M|SGH-I777|SGH-I780|SGH-I827|SGH-I847|SGH-I857|SGH-I896|SGH-I897|SGH-I900|SGH-I907|SGH-I917|SGH-I927|SGH-I937|SGH-I997|SGH-J150|SGH-J200|SGH-L170|SGH-L700|SGH-M110|SGH-M150|SGH-M200|SGH-N105|SGH-N500|SGH-N600|SGH-N620|SGH-N625|SGH-N700|SGH-N710|SGH-P107|SGH-P207|SGH-P300|SGH-P310|SGH-P520|SGH-P735|SGH-P777|SGH-Q105|SGH-R210|SGH-R220|SGH-R225|SGH-S105|SGH-S307|SGH-T109|SGH-T119|SGH-T139|SGH-T209|SGH-T219|SGH-T229|SGH-T239|SGH-T249|SGH-T259|SGH-T309|SGH-T319|SGH-T329|SGH-T339|SGH-T349|SGH-T359|SGH-T369|SGH-T379|SGH-T409|SGH-T429|SGH-T439|SGH-T459|SGH-T469|SGH-T479|SGH-T499|SGH-T509|SGH-T519|SGH-T539|SGH-T559|SGH-T589|SGH-T609|SGH-T619|SGH-T629|SGH-T639|SGH-T659|SGH-T669|SGH-T679|SGH-T709|SGH-T719|SGH-T729|SGH-T739|SGH-T746|SGH-T749|SGH-T759|SGH-T769|SGH-T809|SGH-T819|SGH-T839|SGH-T919|SGH-T929|SGH-T939|SGH-T959|SGH-T989|SGH-U100|SGH-U200|SGH-U800|SGH-V205|SGH-V206|SGH-X100|SGH-X105|SGH-X120|SGH-X140|SGH-X426|SGH-X427|SGH-X475|SGH-X495|SGH-X497|SGH-X507|SGH-X600|SGH-X610|SGH-X620|SGH-X630|SGH-X700|SGH-X820|SGH-X890|SGH-Z130|SGH-Z150|SGH-Z170|SGH-ZX10|SGH-ZX20|SHW-M110|SPH-A120|SPH-A400|SPH-A420|SPH-A460|SPH-A500|SPH-A560|SPH-A600|SPH-A620|SPH-A660|SPH-A700|SPH-A740|SPH-A760|SPH-A790|SPH-A800|SPH-A820|SPH-A840|SPH-A880|SPH-A900|SPH-A940|SPH-A960|SPH-D600|SPH-D700|SPH-D710|SPH-D720|SPH-I300|SPH-I325|SPH-I330|SPH-I350|SPH-I500|SPH-I600|SPH-I700|SPH-L700|SPH-M100|SPH-M220|SPH-M240|SPH-M300|SPH-M305|SPH-M320|SPH-M330|SPH-M350|SPH-M360|SPH-M370|SPH-M380|SPH-M510|SPH-M540|SPH-M550|SPH-M560|SPH-M570|SPH-M580|SPH-M610|SPH-M620|SPH-M630|SPH-M800|SPH-M810|SPH-M850|SPH-M900|SPH-M910|SPH-M920|SPH-M930|SPH-N100|SPH-N200|SPH-N240|SPH-N300|SPH-N400|SPH-Z400|SWC-E100|SCH-i909|GT-N7100|GT-N7105|SCH-I535',
|
123 |
'LG' => '\bLG\b;|LG[- ]?(C800|C900|E400|E610|E900|E-900|F160|F180K|F180L|F180S|730|855|L160|LS840|LS970|LU6200|MS690|MS695|MS770|MS840|MS870|MS910|P500|P700|P705|VM696|AS680|AS695|AX840|C729|E970|GS505|272|C395|E739BK|E960|L55C|L75C|LS696|LS860|P769BK|P350|P500|P509|P870|UN272|US730|VS840|VS950|LN272|LN510|LS670|LS855|LW690|MN270|MN510|P509|P769|P930|UN200|UN270|UN510|UN610|US670|US740|US760|UX265|UX840|VN271|VN530|VS660|VS700|VS740|VS750|VS910|VS920|VS930|VX9200|VX11000|AX840A|LW770|P506|P925|P999)',
|
124 |
'Sony' => 'SonyST|SonyLT|SonyEricsson|SonyEricssonLT15iv|LT18i|E10i|LT28h|LT26w|SonyEricssonMT27i',
|
125 |
'Asus' => 'Asus.*Galaxy|PadFone.*Mobile',
|
@@ -148,16 +176,16 @@ class Mobile_Detect
|
|
148 |
protected static $tabletDevices = array(
|
149 |
'iPad' => 'iPad|iPad.*Mobile', // @todo: check for mobile friendly emails topic.
|
150 |
'NexusTablet' => '^.*Android.*Nexus(((?:(?!Mobile))|(?:(\s(7|10).+))).)*$',
|
151 |
-
'SamsungTablet' => 'SAMSUNG.*Tablet|Galaxy.*Tab|SC-01C|GT-P1000|GT-P1003|GT-P1010|GT-P3105|GT-P6210|GT-P6800|GT-P6810|GT-P7100|GT-P7300|GT-P7310|GT-P7500|GT-P7510|SCH-I800|SCH-I815|SCH-I905|SGH-I957|SGH-I987|SGH-T849|SGH-T859|SGH-T869|SPH-P100|GT-P3100|GT-P3108|GT-P3110|GT-P5100|GT-P5110|GT-P6200|GT-P7320|GT-P7511|GT-N8000|GT-P8510|SGH-I497|SPH-P500|SGH-T779|SCH-I705|SCH-I915|GT-N8013|GT-P3113|GT-P5113|GT-P8110|GT-N8010|GT-N8005|GT-N8020|GT-P1013|GT-P6201|GT-P7501|GT-N5100|GT-N5110|SHV-E140K|SHV-E140L|SHV-E140S|SHV-E150S|SHV-E230K|SHV-E230L|SHV-E230S|SHW-M180K|SHW-M180L|SHW-M180S|SHW-M180W|SHW-M300W|SHW-M305W|SHW-M380K|SHW-M380S|SHW-M380W|SHW-M430W|SHW-M480K|SHW-M480S|SHW-M480W|SHW-M485W|SHW-M486W|SHW-M500W|GT-I9228|SCH-P739|SCH-I925|GT-I9200|GT-I9205|GT-P5200|GT-P5210|SM-T311|SM-T310|SM-T210|SM-T211|SM-P900',
|
152 |
// @reference: http://www.labnol.org/software/kindle-user-agent-string/20378/
|
153 |
-
'Kindle' => 'Kindle|Silk.*Accelerated|Android.*\b(KFTT|KFOTE|WFJWAE)\b',
|
154 |
// Only the Surface tablets with Windows RT are considered mobile.
|
155 |
// @ref: http://msdn.microsoft.com/en-us/library/ie/hh920767(v=vs.85).aspx
|
156 |
'SurfaceTablet' => 'Windows NT [0-9.]+; ARM;',
|
157 |
// @ref: http://shopping1.hp.com/is-bin/INTERSHOP.enfinity/WFS/WW-USSMBPublicStore-Site/en_US/-/USD/ViewStandardCatalog-Browse?CatalogCategoryID=JfIQ7EN5lqMAAAEyDcJUDwMT
|
158 |
'HPTablet' => 'HP Slate 7|HP ElitePad 900|hp-tablet|EliteBook.*Touch',
|
159 |
// @note: watch out for PadFone, see #132
|
160 |
-
'AsusTablet' => '^.*PadFone((?!Mobile).)*$|Transformer|TF101|TF101G|TF300T|TF300TG|TF300TL|TF700T|TF700KL|TF701T|TF810C|ME171|ME301T|ME371MG|ME370T|ME372MG|ME172V|ME173X|ME400C|Slider SL101',
|
161 |
'BlackBerryTablet' => 'PlayBook|RIM Tablet',
|
162 |
'HTCtablet' => 'HTC Flyer|HTC Jetstream|HTC-P715a|HTC EVO View 4G|PG41200',
|
163 |
'MotorolaTablet' => 'xoom|sholest|MZ615|MZ605|MZ505|MZ601|MZ602|MZ603|MZ604|MZ606|MZ607|MZ608|MZ609|MZ615|MZ616|MZ617',
|
@@ -175,27 +203,28 @@ class Mobile_Detect
|
|
175 |
'LGTablet' => '\bL-06C|LG-V900|LG-V909\b',
|
176 |
'FujitsuTablet' => 'Android.*\b(F-01D|F-05E|F-10D|M532|Q572)\b',
|
177 |
// Prestigio Tablets http://www.prestigio.com/support
|
178 |
-
'PrestigioTablet' => 'PMP3170B|PMP3270B|PMP3470B|PMP7170B|PMP3370B|PMP3570C|PMP5870C|PMP3670B|PMP5570C|PMP5770D|PMP3970B|PMP3870C|PMP5580C|PMP5880D|PMP5780D|PMP5588C|PMP7280C|PMP7280|PMP7880D|PMP5597D|PMP5597|PMP7100D|PER3464|PER3274|PER3574|PER3884|PER5274|PER5474|PMP5097CPRO|PMP5097|PMP7380D',
|
179 |
// @ref: http://support.lenovo.com/en_GB/downloads/default.page?#
|
180 |
-
'LenovoTablet' => 'IdeaTab|S2110|S6000|K3011|A3000|A1000|A2107|A2109|A1107',
|
181 |
-
|
|
|
182 |
'MedionTablet' => 'Android.*\bOYO\b|LIFE.*(P9212|P9514|P9516|S9512)|LIFETAB',
|
183 |
'ArnovaTablet' => 'AN10G2|AN7bG3|AN7fG3|AN8G3|AN8cG3|AN7G3|AN9G3|AN7dG3|AN7dG3ST|AN7dG3ChildPad|AN10bG3|AN10bG3DT',
|
184 |
// IRU.ru Tablets http://www.iru.ru/catalog/soho/planetable/
|
185 |
'IRUTablet' => 'M702pro',
|
186 |
-
'MegafonTablet' => 'MegaFon V9
|
187 |
// @ref: http://www.e-boda.ro/tablete-pc.html
|
188 |
'EbodaTablet' => 'E-Boda (Supreme|Impresspeed|Izzycomm|Essential)',
|
189 |
// @ref: http://www.allview.ro/produse/droseries/lista-tablete-pc/
|
190 |
'AllViewTablet' => 'Allview.*(Viva|Alldro|City|Speed|All TV|Frenzy|Quasar|Shine|TX1|AX1|AX2)',
|
191 |
// @reference: http://wiki.archosfans.com/index.php?title=Main_Page
|
192 |
-
'ArchosTablet' => '\b(101G9|80G9|A101IT)\b',
|
193 |
// @ref: http://www.ainol.com/plugin.php?identifier=ainol&module=product
|
194 |
'AinolTablet' => 'NOVO7|NOVO8|NOVO10|Novo7Aurora|Novo7Basic|NOVO7PALADIN|novo9-Spark',
|
195 |
// @todo: inspect http://esupport.sony.com/US/p/select-system.pl?DIRECTOR=DRIVER
|
196 |
// @ref: Readers http://www.atsuhiro-me.net/ebook/sony-reader/sony-reader-web-browser
|
197 |
// @ref: http://www.sony.jp/support/tablet/
|
198 |
-
'SonyTablet' => 'Sony.*Tablet|Xperia Tablet|Sony Tablet S|SO-03E|SGPT12|SGPT121|SGPT122|SGPT123|SGPT111|SGPT112|SGPT113|SGPT211|SGPT213|SGP311|SGP312|SGP321|EBRD1101|EBRD1102|EBRD1201',
|
199 |
// @ref: db + http://www.cube-tablet.com/buy-products.html
|
200 |
'CubeTablet' => 'Android.*(K8GT|U9GT|U10GT|U16GT|U17GT|U18GT|U19GT|U20GT|U23GT|U30GT)|CUBE U8GT',
|
201 |
// @ref: http://www.cobyusa.com/?p=pcat&pcat_id=3001
|
@@ -235,6 +264,14 @@ class Mobile_Detect
|
|
235 |
'TexetTablet' => 'NaviPad|TB-772A|TM-7045|TM-7055|TM-9750|TM-7016|TM-7024|TM-7026|TM-7041|TM-7043|TM-7047|TM-8041|TM-9741|TM-9747|TM-9748|TM-9751|TM-7022|TM-7021|TM-7020|TM-7011|TM-7010|TM-7023|TM-7025|TM-7037W|TM-7038W|TM-7027W|TM-9720|TM-9725|TM-9737W|TM-1020|TM-9738W|TM-9740|TM-9743W|TB-807A|TB-771A|TB-727A|TB-725A|TB-719A|TB-823A|TB-805A|TB-723A|TB-715A|TB-707A|TB-705A|TB-709A|TB-711A|TB-890HD|TB-880HD|TB-790HD|TB-780HD|TB-770HD|TB-721HD|TB-710HD|TB-434HD|TB-860HD|TB-840HD|TB-760HD|TB-750HD|TB-740HD|TB-730HD|TB-722HD|TB-720HD|TB-700HD|TB-500HD|TB-470HD|TB-431HD|TB-430HD|TB-506|TB-504|TB-446|TB-436|TB-416|TB-146SE|TB-126SE',
|
236 |
// @note: Avoid detecting 'PLAYSTATION 3' as mobile.
|
237 |
'PlaystationTablet' => 'Playstation.*(Portable|Vita)',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
238 |
// @ref: http://www.galapad.net/product.html
|
239 |
'GalapadTablet' => 'Android.*\bG1\b',
|
240 |
// @ref: http://www.micromaxinfo.com/tablet/funbook
|
@@ -253,8 +290,9 @@ class Mobile_Detect
|
|
253 |
// @ref: http://www.gloryunion.cn/products.asp
|
254 |
// @ref: http://www.allwinnertech.com/en/apply/mobile.html
|
255 |
// @ref: http://www.ptcl.com.pk/pd_content.php?pd_id=284 (EVOTAB)
|
|
|
256 |
// aka. Cute or Cool tablets. Not sure yet, must research to avoid collisions.
|
257 |
-
'GUTablet' => 'TX-A1301|TX-M9002|Q702', // A12R|D75A|D77|D79|R83|A95|A106C|R15|A75|A76|D71|D72|R71|R73|R77|D82|R85|D92|A97|D92|R91|A10F|A77F|W71F|A78F|W78F|W81F|A97F|W91F|W97F|R16G|C72|C73E|K72|K73|R96G
|
258 |
// @ref: http://www.pointofview-online.com/showroom.php?shop_mode=product_listing&category_id=118
|
259 |
'PointOfViewTablet' => 'TAB-P506|TAB-navi-7-3G-M|TAB-P517|TAB-P-527|TAB-P701|TAB-P703|TAB-P721|TAB-P731N|TAB-P741|TAB-P825|TAB-P905|TAB-P925|TAB-PR945|TAB-PL1015|TAB-P1025|TAB-PI1045|TAB-P1325|TAB-PROTAB[0-9]+|TAB-PROTAB25|TAB-PROTAB26|TAB-PROTAB27|TAB-PROTAB26XL|TAB-PROTAB2-IPS9|TAB-PROTAB30-IPS9|TAB-PROTAB25XXL|TAB-PROTAB26-IPS10|TAB-PROTAB30-IPS10',
|
260 |
// @ref: http://www.overmax.pl/pl/katalog-produktow,p8/tablety,c14/
|
@@ -264,9 +302,23 @@ class Mobile_Detect
|
|
264 |
'HCLTablet' => 'HCL.*Tablet|Connect-3G-2.0|Connect-2G-2.0|ME Tablet U1|ME Tablet U2|ME Tablet G1|ME Tablet X1|ME Tablet Y2|ME Tablet Sync',
|
265 |
// @ref: http://www.edigital.hu/Tablet_es_e-book_olvaso/Tablet-c18385.html
|
266 |
'DPSTablet' => 'DPS Dream 9|DPS Dual 7',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
267 |
// @ref: http://www.telstra.com.au/home-phone/thub-2/
|
268 |
'TelstraTablet' => 'T-Hub2',
|
269 |
-
'GenericTablet' => 'Android.*\b97D\b|Tablet(?!.*PC)|ViewPad7|BNTV250A|MID-WCDMA|LogicPD Zoom2|\bA7EB\b|CatNova8|A1_07|CT704|CT1002|\bM721\b|rk30sdk|\bEVOTAB\b|SmartTabII10',
|
270 |
);
|
271 |
|
272 |
/**
|
@@ -349,6 +401,26 @@ class Mobile_Detect
|
|
349 |
'Watch' => 'SM-V700',
|
350 |
);
|
351 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
352 |
/**
|
353 |
* The individual segments that could exist in a User-Agent string. VER refers to the regular
|
354 |
* expression defined in the constant self::VER.
|
@@ -510,6 +582,22 @@ class Mobile_Detect
|
|
510 |
}
|
511 |
}
|
512 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
513 |
/**
|
514 |
* Set the User-Agent to be used.
|
515 |
*
|
@@ -518,19 +606,19 @@ class Mobile_Detect
|
|
518 |
public function setUserAgent($userAgent = null)
|
519 |
{
|
520 |
if (!empty($userAgent)) {
|
521 |
-
$this->userAgent = $userAgent;
|
522 |
} else {
|
523 |
-
$this->userAgent = $this->getHttpHeader('User-Agent');
|
524 |
|
525 |
-
|
526 |
-
$this->userAgent = $this->getHttpHeader('X-Device-User-Agent');
|
527 |
-
}
|
528 |
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
}
|
|
|
|
|
|
|
534 |
}
|
535 |
}
|
536 |
|
@@ -684,6 +772,16 @@ class Mobile_Detect
|
|
684 |
}
|
685 |
}
|
686 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
687 |
/**
|
688 |
* Check the HTTP headers for signs of mobile.
|
689 |
* This is the fastest mobile check possible; it's used
|
@@ -693,30 +791,24 @@ class Mobile_Detect
|
|
693 |
*/
|
694 |
public function checkHttpHeadersForMobile()
|
695 |
{
|
696 |
-
|
697 |
-
|
698 |
-
|
699 |
-
|
700 |
-
|
701 |
-
|
702 |
-
|
703 |
-
|
704 |
-
|
705 |
-
|
706 |
-
|
707 |
-
|
708 |
-
|
709 |
-
|
710 |
-
|
711 |
-
|
712 |
-
|
713 |
-
|
714 |
-
isset($this->httpHeaders['HTTP_X_ATT_DEVICEID']) || // Seen this on HTC Sensation. @ref: SensationXE_Beats_Z715e
|
715 |
-
//HTTP_X_NETWORK_TYPE = WIFI
|
716 |
-
( isset($this->httpHeaders['HTTP_UA_CPU']) &&
|
717 |
-
$this->httpHeaders['HTTP_UA_CPU'] == 'ARM' // Seen this on a HTC.
|
718 |
-
)
|
719 |
-
);
|
720 |
}
|
721 |
|
722 |
/**
|
@@ -748,7 +840,7 @@ class Mobile_Detect
|
|
748 |
* @param null $userAgent deprecated
|
749 |
* @return boolean
|
750 |
*/
|
751 |
-
|
752 |
{
|
753 |
// Begin general search.
|
754 |
foreach ($this->getRules() as $_regex) {
|
@@ -772,7 +864,7 @@ class Mobile_Detect
|
|
772 |
* @param null $userAgent deprecated
|
773 |
* @return mixed
|
774 |
*/
|
775 |
-
|
776 |
{
|
777 |
// Make the keys lowercase so we can match: isIphone(), isiPhone(), isiphone(), etc.
|
778 |
$key = strtolower($key);
|
@@ -866,16 +958,6 @@ class Mobile_Detect
|
|
866 |
return $this->matchUAAgainstKey($key);
|
867 |
}
|
868 |
|
869 |
-
/**
|
870 |
-
* Retrieve the list of mobile operating systems.
|
871 |
-
*
|
872 |
-
* @return array The list of mobile operating systems.
|
873 |
-
*/
|
874 |
-
public static function getOperatingSystems()
|
875 |
-
{
|
876 |
-
return self::$operatingSystems;
|
877 |
-
}
|
878 |
-
|
879 |
/**
|
880 |
* Some detection rules are relative (not standard),
|
881 |
* because of the diversity of devices, vendors and
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Mobile Detect Library
|
4 |
+
* =====================
|
5 |
*
|
6 |
+
* Motto: "Every business should have a mobile detection script to detect mobile readers"
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
*
|
8 |
+
* Mobile_Detect is a lightweight PHP class for detecting mobile devices (including tablets).
|
9 |
+
* It uses the User-Agent string combined with specific HTTP headers to detect the mobile environment.
|
10 |
*
|
11 |
+
* @author Current authors: Serban Ghita <serbanghita@gmail.com>, Nick Ilyin <nick.ilyin@gmail.com>
|
12 |
+
* Original author: Victor Stanciu <vic.stanciu@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
13 |
*
|
14 |
+
* @license Code and contributions have 'MIT License'
|
15 |
+
* More details: https://github.com/serbanghita/Mobile-Detect/blob/master/LICENSE.txt
|
16 |
*
|
17 |
+
* @link Homepage: http://mobiledetect.net
|
18 |
+
* GitHub Repo: https://github.com/serbanghita/Mobile-Detect
|
19 |
+
* Google Code: http://code.google.com/p/php-mobile-detect/
|
20 |
+
* README: https://github.com/serbanghita/Mobile-Detect/blob/master/README.md
|
21 |
+
* HOWTO: https://github.com/serbanghita/Mobile-Detect/wiki/Code-examples
|
22 |
+
*
|
23 |
+
* @version 2.7.7
|
24 |
*/
|
25 |
|
26 |
class Mobile_Detect
|
64 |
/**
|
65 |
* Stores the version number of the current release.
|
66 |
*/
|
67 |
+
const VERSION = '2.7.7';
|
68 |
|
69 |
/**
|
70 |
* A type for the version() method indicating a string return value.
|
97 |
*/
|
98 |
protected $detectionType = self::DETECTION_TYPE_MOBILE;
|
99 |
|
100 |
+
/**
|
101 |
+
* HTTP headers that trigger the 'isMobile' detection
|
102 |
+
* to be true.
|
103 |
+
*
|
104 |
+
* @var array
|
105 |
+
*/
|
106 |
+
protected static $mobileHeaders = array(
|
107 |
+
|
108 |
+
'HTTP_ACCEPT' => array('matches' => array(
|
109 |
+
// Opera Mini; @reference: http://dev.opera.com/articles/view/opera-binary-markup-language/
|
110 |
+
'application/x-obml2d',
|
111 |
+
// BlackBerry devices.
|
112 |
+
'application/vnd.rim.html',
|
113 |
+
'text/vnd.wap.wml',
|
114 |
+
'application/vnd.wap.xhtml+xml'
|
115 |
+
)),
|
116 |
+
'HTTP_X_WAP_PROFILE' => null,
|
117 |
+
'HTTP_X_WAP_CLIENTID' => null,
|
118 |
+
'HTTP_WAP_CONNECTION' => null,
|
119 |
+
'HTTP_PROFILE' => null,
|
120 |
+
// Reported by Opera on Nokia devices (eg. C3).
|
121 |
+
'HTTP_X_OPERAMINI_PHONE_UA' => null,
|
122 |
+
'HTTP_X_NOKIA_IPADDRESS' => null,
|
123 |
+
'HTTP_X_NOKIA_GATEWAY_ID' => null,
|
124 |
+
'HTTP_X_ORANGE_ID' => null,
|
125 |
+
'HTTP_X_VODAFONE_3GPDPCONTEXT' => null,
|
126 |
+
'HTTP_X_HUAWEI_USERID' => null,
|
127 |
+
// Reported by Windows Smartphones.
|
128 |
+
'HTTP_UA_OS' => null,
|
129 |
+
// Reported by Verizon, Vodafone proxy system.
|
130 |
+
'HTTP_X_MOBILE_GATEWAY' => null,
|
131 |
+
// Seend this on HTC Sensation. @ref: SensationXE_Beats_Z715e.
|
132 |
+
'HTTP_X_ATT_DEVICEID' => null,
|
133 |
+
// Seen this on a HTC.
|
134 |
+
'HTTP_UA_CPU' => array('matches' => array('ARM')),
|
135 |
+
);
|
136 |
+
|
137 |
/**
|
138 |
* List of mobile devices (phones).
|
139 |
*
|
142 |
protected static $phoneDevices = array(
|
143 |
'iPhone' => '\biPhone.*Mobile|\biPod', // |\biTunes
|
144 |
'BlackBerry' => 'BlackBerry|\bBB10\b|rim[0-9]+',
|
145 |
+
'HTC' => 'HTC|HTC.*(Sensation|Evo|Vision|Explorer|6800|8100|8900|A7272|S510e|C110e|Legend|Desire|T8282)|APX515CKT|Qtek9090|APA9292KT|HD_mini|Sensation.*Z710e|PG86100|Z715e|Desire.*(A8181|HD)|ADR6200|ADR6400L|ADR6425|001HT|Inspire 4G|Android.*\bEVO\b|T-Mobile G1|Z520m',
|
146 |
'Nexus' => 'Nexus One|Nexus S|Galaxy.*Nexus|Android.*Nexus.*Mobile',
|
147 |
// @todo: Is 'Dell Streak' a tablet or a phone? ;)
|
148 |
'Dell' => 'Dell.*Streak|Dell.*Aero|Dell.*Venue|DELL.*Venue Pro|Dell Flash|Dell Smoke|Dell Mini 3iX|XCD28|XCD35|\b001DL\b|\b101DL\b|\bGS01\b',
|
149 |
'Motorola' => 'Motorola|\bDroid\b.*Build|DROIDX|Android.*Xoom|HRI39|MOT-|A1260|A1680|A555|A853|A855|A953|A955|A956|Motorola.*ELECTRIFY|Motorola.*i1|i867|i940|MB200|MB300|MB501|MB502|MB508|MB511|MB520|MB525|MB526|MB611|MB612|MB632|MB810|MB855|MB860|MB861|MB865|MB870|ME501|ME502|ME511|ME525|ME600|ME632|ME722|ME811|ME860|ME863|ME865|MT620|MT710|MT716|MT720|MT810|MT870|MT917|Motorola.*TITANIUM|WX435|WX445|XT300|XT301|XT311|XT316|XT317|XT319|XT320|XT390|XT502|XT530|XT531|XT532|XT535|XT603|XT610|XT611|XT615|XT681|XT701|XT702|XT711|XT720|XT800|XT806|XT860|XT862|XT875|XT882|XT883|XT894|XT901|XT907|XT909|XT910|XT912|XT928|XT926|XT915|XT919|XT925',
|
150 |
+
'Samsung' => 'Samsung|SGH-I337|BGT-S5230|GT-B2100|GT-B2700|GT-B2710|GT-B3210|GT-B3310|GT-B3410|GT-B3730|GT-B3740|GT-B5510|GT-B5512|GT-B5722|GT-B6520|GT-B7300|GT-B7320|GT-B7330|GT-B7350|GT-B7510|GT-B7722|GT-B7800|GT-C3010|GT-C3011|GT-C3060|GT-C3200|GT-C3212|GT-C3212I|GT-C3262|GT-C3222|GT-C3300|GT-C3300K|GT-C3303|GT-C3303K|GT-C3310|GT-C3322|GT-C3330|GT-C3350|GT-C3500|GT-C3510|GT-C3530|GT-C3630|GT-C3780|GT-C5010|GT-C5212|GT-C6620|GT-C6625|GT-C6712|GT-E1050|GT-E1070|GT-E1075|GT-E1080|GT-E1081|GT-E1085|GT-E1087|GT-E1100|GT-E1107|GT-E1110|GT-E1120|GT-E1125|GT-E1130|GT-E1160|GT-E1170|GT-E1175|GT-E1180|GT-E1182|GT-E1200|GT-E1210|GT-E1225|GT-E1230|GT-E1390|GT-E2100|GT-E2120|GT-E2121|GT-E2152|GT-E2220|GT-E2222|GT-E2230|GT-E2232|GT-E2250|GT-E2370|GT-E2550|GT-E2652|GT-E3210|GT-E3213|GT-I5500|GT-I5503|GT-I5700|GT-I5800|GT-I5801|GT-I6410|GT-I6420|GT-I7110|GT-I7410|GT-I7500|GT-I8000|GT-I8150|GT-I8160|GT-I8190|GT-I8320|GT-I8330|GT-I8350|GT-I8530|GT-I8700|GT-I8703|GT-I8910|GT-I9000|GT-I9001|GT-I9003|GT-I9010|GT-I9020|GT-I9023|GT-I9070|GT-I9082|GT-I9100|GT-I9103|GT-I9220|GT-I9250|GT-I9300|GT-I9305|GT-I9500|GT-I9505|GT-M3510|GT-M5650|GT-M7500|GT-M7600|GT-M7603|GT-M8800|GT-M8910|GT-N7000|GT-S3110|GT-S3310|GT-S3350|GT-S3353|GT-S3370|GT-S3650|GT-S3653|GT-S3770|GT-S3850|GT-S5210|GT-S5220|GT-S5229|GT-S5230|GT-S5233|GT-S5250|GT-S5253|GT-S5260|GT-S5263|GT-S5270|GT-S5300|GT-S5330|GT-S5350|GT-S5360|GT-S5363|GT-S5369|GT-S5380|GT-S5380D|GT-S5560|GT-S5570|GT-S5600|GT-S5603|GT-S5610|GT-S5620|GT-S5660|GT-S5670|GT-S5690|GT-S5750|GT-S5780|GT-S5830|GT-S5839|GT-S6102|GT-S6500|GT-S7070|GT-S7200|GT-S7220|GT-S7230|GT-S7233|GT-S7250|GT-S7500|GT-S7530|GT-S7550|GT-S7562|GT-S7710|GT-S8000|GT-S8003|GT-S8500|GT-S8530|GT-S8600|SCH-A310|SCH-A530|SCH-A570|SCH-A610|SCH-A630|SCH-A650|SCH-A790|SCH-A795|SCH-A850|SCH-A870|SCH-A890|SCH-A930|SCH-A950|SCH-A970|SCH-A990|SCH-I100|SCH-I110|SCH-I400|SCH-I405|SCH-I500|SCH-I510|SCH-I515|SCH-I600|SCH-I730|SCH-I760|SCH-I770|SCH-I830|SCH-I910|SCH-I920|SCH-I959|SCH-LC11|SCH-N150|SCH-N300|SCH-R100|SCH-R300|SCH-R351|SCH-R400|SCH-R410|SCH-T300|SCH-U310|SCH-U320|SCH-U350|SCH-U360|SCH-U365|SCH-U370|SCH-U380|SCH-U410|SCH-U430|SCH-U450|SCH-U460|SCH-U470|SCH-U490|SCH-U540|SCH-U550|SCH-U620|SCH-U640|SCH-U650|SCH-U660|SCH-U700|SCH-U740|SCH-U750|SCH-U810|SCH-U820|SCH-U900|SCH-U940|SCH-U960|SCS-26UC|SGH-A107|SGH-A117|SGH-A127|SGH-A137|SGH-A157|SGH-A167|SGH-A177|SGH-A187|SGH-A197|SGH-A227|SGH-A237|SGH-A257|SGH-A437|SGH-A517|SGH-A597|SGH-A637|SGH-A657|SGH-A667|SGH-A687|SGH-A697|SGH-A707|SGH-A717|SGH-A727|SGH-A737|SGH-A747|SGH-A767|SGH-A777|SGH-A797|SGH-A817|SGH-A827|SGH-A837|SGH-A847|SGH-A867|SGH-A877|SGH-A887|SGH-A897|SGH-A927|SGH-B100|SGH-B130|SGH-B200|SGH-B220|SGH-C100|SGH-C110|SGH-C120|SGH-C130|SGH-C140|SGH-C160|SGH-C170|SGH-C180|SGH-C200|SGH-C207|SGH-C210|SGH-C225|SGH-C230|SGH-C417|SGH-C450|SGH-D307|SGH-D347|SGH-D357|SGH-D407|SGH-D415|SGH-D780|SGH-D807|SGH-D980|SGH-E105|SGH-E200|SGH-E315|SGH-E316|SGH-E317|SGH-E335|SGH-E590|SGH-E635|SGH-E715|SGH-E890|SGH-F300|SGH-F480|SGH-I200|SGH-I300|SGH-I320|SGH-I550|SGH-I577|SGH-I600|SGH-I607|SGH-I617|SGH-I627|SGH-I637|SGH-I677|SGH-I700|SGH-I717|SGH-I727|SGH-i747M|SGH-I777|SGH-I780|SGH-I827|SGH-I847|SGH-I857|SGH-I896|SGH-I897|SGH-I900|SGH-I907|SGH-I917|SGH-I927|SGH-I937|SGH-I997|SGH-J150|SGH-J200|SGH-L170|SGH-L700|SGH-M110|SGH-M150|SGH-M200|SGH-N105|SGH-N500|SGH-N600|SGH-N620|SGH-N625|SGH-N700|SGH-N710|SGH-P107|SGH-P207|SGH-P300|SGH-P310|SGH-P520|SGH-P735|SGH-P777|SGH-Q105|SGH-R210|SGH-R220|SGH-R225|SGH-S105|SGH-S307|SGH-T109|SGH-T119|SGH-T139|SGH-T209|SGH-T219|SGH-T229|SGH-T239|SGH-T249|SGH-T259|SGH-T309|SGH-T319|SGH-T329|SGH-T339|SGH-T349|SGH-T359|SGH-T369|SGH-T379|SGH-T409|SGH-T429|SGH-T439|SGH-T459|SGH-T469|SGH-T479|SGH-T499|SGH-T509|SGH-T519|SGH-T539|SGH-T559|SGH-T589|SGH-T609|SGH-T619|SGH-T629|SGH-T639|SGH-T659|SGH-T669|SGH-T679|SGH-T709|SGH-T719|SGH-T729|SGH-T739|SGH-T746|SGH-T749|SGH-T759|SGH-T769|SGH-T809|SGH-T819|SGH-T839|SGH-T919|SGH-T929|SGH-T939|SGH-T959|SGH-T989|SGH-U100|SGH-U200|SGH-U800|SGH-V205|SGH-V206|SGH-X100|SGH-X105|SGH-X120|SGH-X140|SGH-X426|SGH-X427|SGH-X475|SGH-X495|SGH-X497|SGH-X507|SGH-X600|SGH-X610|SGH-X620|SGH-X630|SGH-X700|SGH-X820|SGH-X890|SGH-Z130|SGH-Z150|SGH-Z170|SGH-ZX10|SGH-ZX20|SHW-M110|SPH-A120|SPH-A400|SPH-A420|SPH-A460|SPH-A500|SPH-A560|SPH-A600|SPH-A620|SPH-A660|SPH-A700|SPH-A740|SPH-A760|SPH-A790|SPH-A800|SPH-A820|SPH-A840|SPH-A880|SPH-A900|SPH-A940|SPH-A960|SPH-D600|SPH-D700|SPH-D710|SPH-D720|SPH-I300|SPH-I325|SPH-I330|SPH-I350|SPH-I500|SPH-I600|SPH-I700|SPH-L700|SPH-M100|SPH-M220|SPH-M240|SPH-M300|SPH-M305|SPH-M320|SPH-M330|SPH-M350|SPH-M360|SPH-M370|SPH-M380|SPH-M510|SPH-M540|SPH-M550|SPH-M560|SPH-M570|SPH-M580|SPH-M610|SPH-M620|SPH-M630|SPH-M800|SPH-M810|SPH-M850|SPH-M900|SPH-M910|SPH-M920|SPH-M930|SPH-N100|SPH-N200|SPH-N240|SPH-N300|SPH-N400|SPH-Z400|SWC-E100|SCH-i909|GT-N7100|GT-N7105|SCH-I535|SM-N900A|SGH-I317|SGH-T999L|GT-S5360B',
|
151 |
'LG' => '\bLG\b;|LG[- ]?(C800|C900|E400|E610|E900|E-900|F160|F180K|F180L|F180S|730|855|L160|LS840|LS970|LU6200|MS690|MS695|MS770|MS840|MS870|MS910|P500|P700|P705|VM696|AS680|AS695|AX840|C729|E970|GS505|272|C395|E739BK|E960|L55C|L75C|LS696|LS860|P769BK|P350|P500|P509|P870|UN272|US730|VS840|VS950|LN272|LN510|LS670|LS855|LW690|MN270|MN510|P509|P769|P930|UN200|UN270|UN510|UN610|US670|US740|US760|UX265|UX840|VN271|VN530|VS660|VS700|VS740|VS750|VS910|VS920|VS930|VX9200|VX11000|AX840A|LW770|P506|P925|P999)',
|
152 |
'Sony' => 'SonyST|SonyLT|SonyEricsson|SonyEricssonLT15iv|LT18i|E10i|LT28h|LT26w|SonyEricssonMT27i',
|
153 |
'Asus' => 'Asus.*Galaxy|PadFone.*Mobile',
|
176 |
protected static $tabletDevices = array(
|
177 |
'iPad' => 'iPad|iPad.*Mobile', // @todo: check for mobile friendly emails topic.
|
178 |
'NexusTablet' => '^.*Android.*Nexus(((?:(?!Mobile))|(?:(\s(7|10).+))).)*$',
|
179 |
+
'SamsungTablet' => 'SAMSUNG.*Tablet|Galaxy.*Tab|SC-01C|GT-P1000|GT-P1003|GT-P1010|GT-P3105|GT-P6210|GT-P6800|GT-P6810|GT-P7100|GT-P7300|GT-P7310|GT-P7500|GT-P7510|SCH-I800|SCH-I815|SCH-I905|SGH-I957|SGH-I987|SGH-T849|SGH-T859|SGH-T869|SPH-P100|GT-P3100|GT-P3108|GT-P3110|GT-P5100|GT-P5110|GT-P6200|GT-P7320|GT-P7511|GT-N8000|GT-P8510|SGH-I497|SPH-P500|SGH-T779|SCH-I705|SCH-I915|GT-N8013|GT-P3113|GT-P5113|GT-P8110|GT-N8010|GT-N8005|GT-N8020|GT-P1013|GT-P6201|GT-P7501|GT-N5100|GT-N5110|SHV-E140K|SHV-E140L|SHV-E140S|SHV-E150S|SHV-E230K|SHV-E230L|SHV-E230S|SHW-M180K|SHW-M180L|SHW-M180S|SHW-M180W|SHW-M300W|SHW-M305W|SHW-M380K|SHW-M380S|SHW-M380W|SHW-M430W|SHW-M480K|SHW-M480S|SHW-M480W|SHW-M485W|SHW-M486W|SHW-M500W|GT-I9228|SCH-P739|SCH-I925|GT-I9200|GT-I9205|GT-P5200|GT-P5210|SM-T311|SM-T310|SM-T210|SM-T210R|SM-T211|SM-P600|SM-P601|SM-P605|SM-P900|SM-T217|SM-T217A|SM-T217S|SM-P6000|SM-T3100|SGH-I467|XE500',
|
180 |
// @reference: http://www.labnol.org/software/kindle-user-agent-string/20378/
|
181 |
+
'Kindle' => 'Kindle|Silk.*Accelerated|Android.*\b(KFOT|KFTT|KFJWI|KFJWA|KFOTE|KFSOWI|KFTHWI|KFTHWA|KFAPWI|KFAPWA|WFJWAE)\b',
|
182 |
// Only the Surface tablets with Windows RT are considered mobile.
|
183 |
// @ref: http://msdn.microsoft.com/en-us/library/ie/hh920767(v=vs.85).aspx
|
184 |
'SurfaceTablet' => 'Windows NT [0-9.]+; ARM;',
|
185 |
// @ref: http://shopping1.hp.com/is-bin/INTERSHOP.enfinity/WFS/WW-USSMBPublicStore-Site/en_US/-/USD/ViewStandardCatalog-Browse?CatalogCategoryID=JfIQ7EN5lqMAAAEyDcJUDwMT
|
186 |
'HPTablet' => 'HP Slate 7|HP ElitePad 900|hp-tablet|EliteBook.*Touch',
|
187 |
// @note: watch out for PadFone, see #132
|
188 |
+
'AsusTablet' => '^.*PadFone((?!Mobile).)*$|Transformer|TF101|TF101G|TF300T|TF300TG|TF300TL|TF700T|TF700KL|TF701T|TF810C|ME171|ME301T|ME302C|ME371MG|ME370T|ME372MG|ME172V|ME173X|ME400C|Slider SL101|\bK00F\b|TX201LA',
|
189 |
'BlackBerryTablet' => 'PlayBook|RIM Tablet',
|
190 |
'HTCtablet' => 'HTC Flyer|HTC Jetstream|HTC-P715a|HTC EVO View 4G|PG41200',
|
191 |
'MotorolaTablet' => 'xoom|sholest|MZ615|MZ605|MZ505|MZ601|MZ602|MZ603|MZ604|MZ606|MZ607|MZ608|MZ609|MZ615|MZ616|MZ617',
|
203 |
'LGTablet' => '\bL-06C|LG-V900|LG-V909\b',
|
204 |
'FujitsuTablet' => 'Android.*\b(F-01D|F-05E|F-10D|M532|Q572)\b',
|
205 |
// Prestigio Tablets http://www.prestigio.com/support
|
206 |
+
'PrestigioTablet' => 'PMP3170B|PMP3270B|PMP3470B|PMP7170B|PMP3370B|PMP3570C|PMP5870C|PMP3670B|PMP5570C|PMP5770D|PMP3970B|PMP3870C|PMP5580C|PMP5880D|PMP5780D|PMP5588C|PMP7280C|PMP7280|PMP7880D|PMP5597D|PMP5597|PMP7100D|PER3464|PER3274|PER3574|PER3884|PER5274|PER5474|PMP5097CPRO|PMP5097|PMP7380D|PMP5297C|PMP5297C_QUAD',
|
207 |
// @ref: http://support.lenovo.com/en_GB/downloads/default.page?#
|
208 |
+
'LenovoTablet' => 'IdeaTab|S2110|S6000|K3011|A3000|A1000|A2107|A2109|A1107|ThinkPad([ ]+)?Tablet',
|
209 |
+
// @ref: http://www.yarvik.com/en/matrix/tablets/
|
210 |
+
'YarvikTablet' => 'Android.*\b(TAB210|TAB211|TAB224|TAB250|TAB260|TAB264|TAB310|TAB360|TAB364|TAB410|TAB411|TAB420|TAB424|TAB450|TAB460|TAB461|TAB464|TAB465|TAB467|TAB468|TAB07-100|TAB07-101|TAB07-150|TAB07-151|TAB07-152|TAB07-200|TAB07-201-3G|TAB07-210|TAB07-211|TAB07-212|TAB07-214|TAB07-220|TAB07-400|TAB07-485|TAB08-150|TAB08-200|TAB08-201-3G|TAB09-100|TAB09-211|TAB09-410|TAB10-150|TAB10-201|TAB10-211|TAB10-400|TAB10-410|TAB13-201|TAB274EUK|TAB275EUK|TAB374EUK|TAB462EUK|TAB474EUK|TAB9-200)\b',
|
211 |
'MedionTablet' => 'Android.*\bOYO\b|LIFE.*(P9212|P9514|P9516|S9512)|LIFETAB',
|
212 |
'ArnovaTablet' => 'AN10G2|AN7bG3|AN7fG3|AN8G3|AN8cG3|AN7G3|AN9G3|AN7dG3|AN7dG3ST|AN7dG3ChildPad|AN10bG3|AN10bG3DT',
|
213 |
// IRU.ru Tablets http://www.iru.ru/catalog/soho/planetable/
|
214 |
'IRUTablet' => 'M702pro',
|
215 |
+
'MegafonTablet' => 'MegaFon V9|\bZTE V9\b|Android.*\bMT7A\b',
|
216 |
// @ref: http://www.e-boda.ro/tablete-pc.html
|
217 |
'EbodaTablet' => 'E-Boda (Supreme|Impresspeed|Izzycomm|Essential)',
|
218 |
// @ref: http://www.allview.ro/produse/droseries/lista-tablete-pc/
|
219 |
'AllViewTablet' => 'Allview.*(Viva|Alldro|City|Speed|All TV|Frenzy|Quasar|Shine|TX1|AX1|AX2)',
|
220 |
// @reference: http://wiki.archosfans.com/index.php?title=Main_Page
|
221 |
+
'ArchosTablet' => '\b(101G9|80G9|A101IT)\b|Qilive 97R|ARCHOS 101G10',
|
222 |
// @ref: http://www.ainol.com/plugin.php?identifier=ainol&module=product
|
223 |
'AinolTablet' => 'NOVO7|NOVO8|NOVO10|Novo7Aurora|Novo7Basic|NOVO7PALADIN|novo9-Spark',
|
224 |
// @todo: inspect http://esupport.sony.com/US/p/select-system.pl?DIRECTOR=DRIVER
|
225 |
// @ref: Readers http://www.atsuhiro-me.net/ebook/sony-reader/sony-reader-web-browser
|
226 |
// @ref: http://www.sony.jp/support/tablet/
|
227 |
+
'SonyTablet' => 'Sony.*Tablet|Xperia Tablet|Sony Tablet S|SO-03E|SGPT12|SGPT13|SGPT114|SGPT121|SGPT122|SGPT123|SGPT111|SGPT112|SGPT113|SGPT131|SGPT132|SGPT133|SGPT211|SGPT212|SGPT213|SGP311|SGP312|SGP321|EBRD1101|EBRD1102|EBRD1201',
|
228 |
// @ref: db + http://www.cube-tablet.com/buy-products.html
|
229 |
'CubeTablet' => 'Android.*(K8GT|U9GT|U10GT|U16GT|U17GT|U18GT|U19GT|U20GT|U23GT|U30GT)|CUBE U8GT',
|
230 |
// @ref: http://www.cobyusa.com/?p=pcat&pcat_id=3001
|
264 |
'TexetTablet' => 'NaviPad|TB-772A|TM-7045|TM-7055|TM-9750|TM-7016|TM-7024|TM-7026|TM-7041|TM-7043|TM-7047|TM-8041|TM-9741|TM-9747|TM-9748|TM-9751|TM-7022|TM-7021|TM-7020|TM-7011|TM-7010|TM-7023|TM-7025|TM-7037W|TM-7038W|TM-7027W|TM-9720|TM-9725|TM-9737W|TM-1020|TM-9738W|TM-9740|TM-9743W|TB-807A|TB-771A|TB-727A|TB-725A|TB-719A|TB-823A|TB-805A|TB-723A|TB-715A|TB-707A|TB-705A|TB-709A|TB-711A|TB-890HD|TB-880HD|TB-790HD|TB-780HD|TB-770HD|TB-721HD|TB-710HD|TB-434HD|TB-860HD|TB-840HD|TB-760HD|TB-750HD|TB-740HD|TB-730HD|TB-722HD|TB-720HD|TB-700HD|TB-500HD|TB-470HD|TB-431HD|TB-430HD|TB-506|TB-504|TB-446|TB-436|TB-416|TB-146SE|TB-126SE',
|
265 |
// @note: Avoid detecting 'PLAYSTATION 3' as mobile.
|
266 |
'PlaystationTablet' => 'Playstation.*(Portable|Vita)',
|
267 |
+
// @ref: http://www.trekstor.de/surftabs.html
|
268 |
+
'TrekstorTablet' => 'ST10416-1|VT10416-1|ST70408-1|ST702xx-1|ST702xx-2|ST80208|ST97216|ST70104-2',
|
269 |
+
// @ref: http://www.pyleaudio.com/Products.aspx?%2fproducts%2fPersonal-Electronics%2fTablets
|
270 |
+
'PyleAudioTablet' => '\b(PTBL10CEU|PTBL10C|PTBL72BC|PTBL72BCEU|PTBL7CEU|PTBL7C|PTBL92BC|PTBL92BCEU|PTBL9CEU|PTBL9CUK|PTBL9C)\b',
|
271 |
+
// @ref: http://www.advandigital.com/index.php?link=content-product&jns=JP001
|
272 |
+
'AdvanTablet' => 'Android.* \b(S5G|S5K|T5B|T3E|T3C|T3B|T1J|T1F|S5D|T2A|T1H|E1C|T1i|S5E|T1-E|S5F|E1-B|T2Ci|T1-B|T1-D|T5-A|O1-A|E1-A|T1-A|T3A|S5|T4i)\b ',
|
273 |
+
// @ref: http://www.danytech.com/category/tablet-pc
|
274 |
+
'DanyTechTablet' => 'Genius Tab G3|Genius Tab S2|Genius Tab Q3|Genius Tab G4|Genius Tab Q4|Genius Tab G-II|Genius TAB GII|Genius TAB GIII|Genius Tab S1',
|
275 |
// @ref: http://www.galapad.net/product.html
|
276 |
'GalapadTablet' => 'Android.*\bG1\b',
|
277 |
// @ref: http://www.micromaxinfo.com/tablet/funbook
|
290 |
// @ref: http://www.gloryunion.cn/products.asp
|
291 |
// @ref: http://www.allwinnertech.com/en/apply/mobile.html
|
292 |
// @ref: http://www.ptcl.com.pk/pd_content.php?pd_id=284 (EVOTAB)
|
293 |
+
// @todo: Softwiner tablets?
|
294 |
// aka. Cute or Cool tablets. Not sure yet, must research to avoid collisions.
|
295 |
+
'GUTablet' => 'TX-A1301|TX-M9002|Q702|kf026', // A12R|D75A|D77|D79|R83|A95|A106C|R15|A75|A76|D71|D72|R71|R73|R77|D82|R85|D92|A97|D92|R91|A10F|A77F|W71F|A78F|W78F|W81F|A97F|W91F|W97F|R16G|C72|C73E|K72|K73|R96G
|
296 |
// @ref: http://www.pointofview-online.com/showroom.php?shop_mode=product_listing&category_id=118
|
297 |
'PointOfViewTablet' => 'TAB-P506|TAB-navi-7-3G-M|TAB-P517|TAB-P-527|TAB-P701|TAB-P703|TAB-P721|TAB-P731N|TAB-P741|TAB-P825|TAB-P905|TAB-P925|TAB-PR945|TAB-PL1015|TAB-P1025|TAB-PI1045|TAB-P1325|TAB-PROTAB[0-9]+|TAB-PROTAB25|TAB-PROTAB26|TAB-PROTAB27|TAB-PROTAB26XL|TAB-PROTAB2-IPS9|TAB-PROTAB30-IPS9|TAB-PROTAB25XXL|TAB-PROTAB26-IPS10|TAB-PROTAB30-IPS10',
|
298 |
// @ref: http://www.overmax.pl/pl/katalog-produktow,p8/tablety,c14/
|
302 |
'HCLTablet' => 'HCL.*Tablet|Connect-3G-2.0|Connect-2G-2.0|ME Tablet U1|ME Tablet U2|ME Tablet G1|ME Tablet X1|ME Tablet Y2|ME Tablet Sync',
|
303 |
// @ref: http://www.edigital.hu/Tablet_es_e-book_olvaso/Tablet-c18385.html
|
304 |
'DPSTablet' => 'DPS Dream 9|DPS Dual 7',
|
305 |
+
// @ref: http://www.visture.com/index.asp
|
306 |
+
'VistureTablet' => 'V97 HD|i75 3G|Visture V4( HD)?|Visture V5( HD)?|Visture V10',
|
307 |
+
// @ref: http://www.mijncresta.nl/tablet
|
308 |
+
'CrestaTablet' => 'CTP(-)?810|CTP(-)?818|CTP(-)?828|CTP(-)?838|CTP(-)?888|CTP(-)?978|CTP(-)?980|CTP(-)?987|CTP(-)?988|CTP(-)?989',
|
309 |
+
// MediaTek - http://www.mediatek.com/_en/01_products/02_proSys.php?cata_sn=1&cata1_sn=1&cata2_sn=309
|
310 |
+
'MediatekTablet' => '\bMT8125|MT8389|MT8135|MT8377\b',
|
311 |
+
// Concorde tab
|
312 |
+
'ConcordeTablet' => 'Concorde([ ]+)?Tab|ConCorde ReadMan',
|
313 |
+
// GoClever Tablets - http://www.goclever.com/uk/products,c1/tablet,c5/
|
314 |
+
'GoCleverTablet' => 'GOCLEVER TAB|A7GOCLEVER|M1042|M7841|M742|R1042BK|R1041|TAB A975|TAB A7842|TAB A741|TAB A741L|TAB M723G|TAB M721|TAB A1021|TAB I921|TAB R721|TAB I720|TAB T76|TAB R70|TAB R76.2|TAB R106|TAB R83.2|TAB M813G|TAB I721|GCTA722|TAB I70|TAB I71|TAB S73|TAB R73|TAB R74|TAB R93|TAB R75|TAB R76.1|TAB A73|TAB A93|TAB A93.2|TAB T72|TAB R83|TAB R974|TAB R973|TAB A101|TAB A103|TAB A104|TAB A104.2|R105BK|M713G|A972BK|TAB A971|TAB R974.2|TAB R104|TAB R83.3|TAB A1042',
|
315 |
+
// Modecom Tablets - http://www.modecom.eu/tablets/portal/
|
316 |
+
'ModecomTablet' => 'FreeTAB 9000|FreeTAB 7.4|FreeTAB 7004|FreeTAB 7800|FreeTAB 2096|FreeTAB 7.5|FreeTAB 1014|FreeTAB 1001 |FreeTAB 8001|FreeTAB 9706|FreeTAB 9702|FreeTAB 7003|FreeTAB 7002|FreeTAB 1002|FreeTAB 7801|FreeTAB 1331|FreeTAB 1004|FreeTAB 8002|FreeTAB 8014|FreeTAB 9704|FreeTAB 1003',
|
317 |
+
// @ref: http://www.tesco.com/direct/hudl/
|
318 |
+
'Hudl' => 'Hudl HT7S3',
|
319 |
// @ref: http://www.telstra.com.au/home-phone/thub-2/
|
320 |
'TelstraTablet' => 'T-Hub2',
|
321 |
+
'GenericTablet' => 'Android.*\b97D\b|Tablet(?!.*PC)|ViewPad7|BNTV250A|MID-WCDMA|LogicPD Zoom2|\bA7EB\b|CatNova8|A1_07|CT704|CT1002|\bM721\b|rk30sdk|\bEVOTAB\b|SmartTabII10|SmartTab10|M758A|ET904',
|
322 |
);
|
323 |
|
324 |
/**
|
401 |
'Watch' => 'SM-V700',
|
402 |
);
|
403 |
|
404 |
+
/**
|
405 |
+
* All possible HTTP headers that represent the
|
406 |
+
* User-Agent string.
|
407 |
+
*
|
408 |
+
* @var array
|
409 |
+
*/
|
410 |
+
protected static $uaHttpHeaders = array(
|
411 |
+
// The default User-Agent string.
|
412 |
+
'HTTP_USER_AGENT',
|
413 |
+
// Header can occur on devices using Opera Mini.
|
414 |
+
'HTTP_X_OPERAMINI_PHONE_UA',
|
415 |
+
// Vodafone specific header: http://www.seoprinciple.com/mobile-web-community-still-angry-at-vodafone/24/
|
416 |
+
'HTTP_X_DEVICE_USER_AGENT',
|
417 |
+
'HTTP_X_ORIGINAL_USER_AGENT',
|
418 |
+
'HTTP_X_SKYFIRE_PHONE',
|
419 |
+
'HTTP_X_BOLT_PHONE_UA',
|
420 |
+
'HTTP_DEVICE_STOCK_UA',
|
421 |
+
'HTTP_X_UCBROWSER_DEVICE_UA'
|
422 |
+
);
|
423 |
+
|
424 |
/**
|
425 |
* The individual segments that could exist in a User-Agent string. VER refers to the regular
|
426 |
* expression defined in the constant self::VER.
|
582 |
}
|
583 |
}
|
584 |
|
585 |
+
public function getMobileHeaders()
|
586 |
+
{
|
587 |
+
return self::$mobileHeaders;
|
588 |
+
}
|
589 |
+
|
590 |
+
/**
|
591 |
+
* Get all possible HTTP headers that
|
592 |
+
* can contain the User-Agent string.
|
593 |
+
*
|
594 |
+
* @return array List of HTTP headers.
|
595 |
+
*/
|
596 |
+
public function getUaHttpHeaders()
|
597 |
+
{
|
598 |
+
return self::$uaHttpHeaders;
|
599 |
+
}
|
600 |
+
|
601 |
/**
|
602 |
* Set the User-Agent to be used.
|
603 |
*
|
606 |
public function setUserAgent($userAgent = null)
|
607 |
{
|
608 |
if (!empty($userAgent)) {
|
609 |
+
return $this->userAgent = $userAgent;
|
610 |
} else {
|
|
|
611 |
|
612 |
+
$this->userAgent = null;
|
|
|
|
|
613 |
|
614 |
+
foreach($this->getUaHttpHeaders() as $altHeader){
|
615 |
+
if(!empty($this->httpHeaders[$altHeader])){ // @todo: should use getHttpHeader(), but it would be slow. (Serban)
|
616 |
+
$this->userAgent .= $this->httpHeaders[$altHeader] . " ";
|
617 |
+
}
|
618 |
}
|
619 |
+
|
620 |
+
return $this->userAgent = (!empty($this->userAgent) ? trim($this->userAgent) : null);
|
621 |
+
|
622 |
}
|
623 |
}
|
624 |
|
772 |
}
|
773 |
}
|
774 |
|
775 |
+
/**
|
776 |
+
* Retrieve the list of mobile operating systems.
|
777 |
+
*
|
778 |
+
* @return array The list of mobile operating systems.
|
779 |
+
*/
|
780 |
+
public static function getOperatingSystems()
|
781 |
+
{
|
782 |
+
return self::$operatingSystems;
|
783 |
+
}
|
784 |
+
|
785 |
/**
|
786 |
* Check the HTTP headers for signs of mobile.
|
787 |
* This is the fastest mobile check possible; it's used
|
791 |
*/
|
792 |
public function checkHttpHeadersForMobile()
|
793 |
{
|
794 |
+
|
795 |
+
foreach($this->getMobileHeaders() as $mobileHeader => $matchType){
|
796 |
+
if( isset($this->httpHeaders[$mobileHeader]) ){
|
797 |
+
if( is_array($matchType['matches']) ){
|
798 |
+
foreach($matchType['matches'] as $_match){
|
799 |
+
if( strpos($this->httpHeaders[$mobileHeader], $_match) !== false ){
|
800 |
+
return true;
|
801 |
+
}
|
802 |
+
}
|
803 |
+
return false;
|
804 |
+
} else {
|
805 |
+
return true;
|
806 |
+
}
|
807 |
+
}
|
808 |
+
}
|
809 |
+
|
810 |
+
return false;
|
811 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
812 |
}
|
813 |
|
814 |
/**
|
840 |
* @param null $userAgent deprecated
|
841 |
* @return boolean
|
842 |
*/
|
843 |
+
protected function matchDetectionRulesAgainstUA($userAgent = null)
|
844 |
{
|
845 |
// Begin general search.
|
846 |
foreach ($this->getRules() as $_regex) {
|
864 |
* @param null $userAgent deprecated
|
865 |
* @return mixed
|
866 |
*/
|
867 |
+
protected function matchUAAgainstKey($key, $userAgent = null)
|
868 |
{
|
869 |
// Make the keys lowercase so we can match: isIphone(), isiPhone(), isiphone(), etc.
|
870 |
$key = strtolower($key);
|
958 |
return $this->matchUAAgainstKey($key);
|
959 |
}
|
960 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
961 |
/**
|
962 |
* Some detection rules are relative (not standard),
|
963 |
* because of the diversity of devices, vendors and
|
app/code/community/Optimiseweb/MobileDetect/etc/config.xml
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
/**
|
4 |
* @package Optimiseweb_MobileDetect
|
5 |
* @author Kathir Vel (sid@optimiseweb.co.uk)
|
6 |
-
* @copyright Copyright (c)
|
7 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
8 |
*/
|
9 |
-->
|
@@ -11,10 +11,38 @@
|
|
11 |
|
12 |
<modules>
|
13 |
<Optimiseweb_MobileDetect>
|
14 |
-
<version>0.1.
|
15 |
</Optimiseweb_MobileDetect>
|
16 |
</modules>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
<global>
|
19 |
|
20 |
<helpers>
|
3 |
/**
|
4 |
* @package Optimiseweb_MobileDetect
|
5 |
* @author Kathir Vel (sid@optimiseweb.co.uk)
|
6 |
+
* @copyright Copyright (c) 2014 Optimise Web
|
7 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
8 |
*/
|
9 |
-->
|
11 |
|
12 |
<modules>
|
13 |
<Optimiseweb_MobileDetect>
|
14 |
+
<version>0.1.8</version>
|
15 |
</Optimiseweb_MobileDetect>
|
16 |
</modules>
|
17 |
+
|
18 |
+
<frontend>
|
19 |
+
|
20 |
+
<translate>
|
21 |
+
<modules>
|
22 |
+
<Optimiseweb_MobileDetect>
|
23 |
+
<files>
|
24 |
+
<default>Optimiseweb_MobileDetect.csv</default>
|
25 |
+
</files>
|
26 |
+
</Optimiseweb_MobileDetect>
|
27 |
+
</modules>
|
28 |
+
</translate>
|
29 |
|
30 |
+
</frontend>
|
31 |
+
|
32 |
+
<adminhtml>
|
33 |
+
|
34 |
+
<translate>
|
35 |
+
<modules>
|
36 |
+
<Optimiseweb_MobileDetect>
|
37 |
+
<files>
|
38 |
+
<default>Optimiseweb_MobileDetect.csv</default>
|
39 |
+
</files>
|
40 |
+
</Optimiseweb_MobileDetect>
|
41 |
+
</modules>
|
42 |
+
</translate>
|
43 |
+
|
44 |
+
</adminhtml>
|
45 |
+
|
46 |
<global>
|
47 |
|
48 |
<helpers>
|
app/etc/modules/Optimiseweb_MobileDetect.xml
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
/**
|
4 |
* @package Optimiseweb_MobileDetect
|
5 |
* @author Kathir Vel (sid@optimiseweb.co.uk)
|
6 |
-
* @copyright Copyright (c)
|
7 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
8 |
*/
|
9 |
-->
|
3 |
/**
|
4 |
* @package Optimiseweb_MobileDetect
|
5 |
* @author Kathir Vel (sid@optimiseweb.co.uk)
|
6 |
+
* @copyright Copyright (c) 2014 Optimise Web
|
7 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
8 |
*/
|
9 |
-->
|
app/locale/en_US/Optimiseweb_MobileDetect.csv
ADDED
File without changes
|
package.xml
CHANGED
@@ -1,18 +1,18 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Optimiseweb_MobileDetect</name>
|
4 |
-
<version>0.1.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Optimise Web's Magento helper to enable the usage of all functions provided by MobileDetect.net</summary>
|
10 |
<description>MobileDetect.net is a lightweight PHP class for detecting mobile devices. Optimise Web's MobileDetect Magento extension allows using the mobile detection functions from within Magento.</description>
|
11 |
-
<notes>Updated to Mobile Detect 2.7.
|
12 |
<authors><author><name>Kathir Vel</name><user>OptimiseWeb</user><email>info@optimiseweb.co.uk</email></author></authors>
|
13 |
-
<date>
|
14 |
-
<time>
|
15 |
-
<contents><target name="magecommunity"><dir name="Optimiseweb"><dir name="MobileDetect"><dir name="Helper"><file name="Data.php" hash="
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Optimiseweb_MobileDetect</name>
|
4 |
+
<version>0.1.8</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Optimise Web's Magento helper to enable the usage of all functions provided by MobileDetect.net</summary>
|
10 |
<description>MobileDetect.net is a lightweight PHP class for detecting mobile devices. Optimise Web's MobileDetect Magento extension allows using the mobile detection functions from within Magento.</description>
|
11 |
+
<notes>Updated to Mobile Detect 2.7.7</notes>
|
12 |
<authors><author><name>Kathir Vel</name><user>OptimiseWeb</user><email>info@optimiseweb.co.uk</email></author></authors>
|
13 |
+
<date>2014-02-03</date>
|
14 |
+
<time>00:50:55</time>
|
15 |
+
<contents><target name="magecommunity"><dir name="Optimiseweb"><dir name="MobileDetect"><dir name="Helper"><file name="Data.php" hash="f5ad4b74013590aa6ed18db407c3f4f8"/></dir><dir name="Library"><file name="Mobile_Detect.php" hash="a020c24c35dffb810cefe82c439a8b38"/></dir><dir name="etc"><file name="config.xml" hash="742c00dbcf1c3bd38c57d85aa8fa90c9"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Optimiseweb_MobileDetect.xml" hash="f12fd3dac1d765e72b8ed85f8608e88f"/></dir></target><target name="magelocale"><dir name="en_US"><file name="Optimiseweb_MobileDetect.csv" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir></target></contents>
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
18 |
</package>
|