-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckDevice.php
202 lines (149 loc) · 5.57 KB
/
checkDevice.php
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
<?php
/*
checkeDevice
------
Plugin Name: checkeDevice
Plugin URI:
Description: Conditional functions for detecting mobile devices, tablets and desktops. Use is_mobile(), is_tablet(), and is_desktop() and is_touch_device() and in your template files.
Author: Georg Tremmel
Version: 2.0
Author URI: http://www.trembl.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT
HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED,
INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR
FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE
OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY PATENTS,
COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.COPYRIGHT HOLDERS WILL NOT
BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL
DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://gnu.org/licenses/>.
*/
// Breakpoints for Mobiles & Tablets
$mobileMaxWidth = 600;
$tabletMaxWidth = 1000;
// get useragent string
$useragent = isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : "";
// get windowWidth cookie
$windowWidth = (isset($_COOKIE['windowWidth']) && $_COOKIE['windowWidth']!="") ? $_COOKIE['windowWidth'] : 0;
// get touch cookie
$touchEnabled = (isset($_COOKIE['touchEnabled']) && $_COOKIE['touchEnabled']!="") ? $_COOKIE['touchEnabled'] : false;
function is_iphone() {
global $useragent;
return(preg_match('/iphone/i',$useragent));
}
function is_ipad() {
global $useragent;
return(preg_match('/ipad/i',$useragent));
}
function is_ipod() {
global $useragent;
return(preg_match('/ipod/i',$useragent));
}
function is_android() {
global $useragent;
return(preg_match('/android/i',$useragent));
}
function is_blackberry() {
global $useragent;
return(preg_match('/blackberry/i',$useragent));
}
function is_opera_mobile() {
global $useragent;
return(preg_match('/opera mini/i',$useragent));
}
function is_palm() {
global $useragent;
return(preg_match('/webOS/i', $useragent));
}
function is_symbian() {
global $useragent;
return(preg_match('/Series60/i', $useragent) || preg_match('/Symbian/i', $useragent));
}
function is_windows_mobile() {
global $useragent;
return(preg_match('/WM5/i', $useragent) || preg_match('/WindowsMobile/i', $useragent));
}
function is_lg() {
global $useragent;
return(preg_match('/LG/i', $useragent));
}
function is_motorola() {
global $useragent;
return(preg_match('/\ Droid/i', $useragent) || preg_match('/XT720/i', $useragent) || preg_match('/MOT-/i', $useragent) || preg_match('/MIB/i', $useragent));
}
function is_nokia() {
global $useragent;
return(preg_match('/Series60/i', $useragent) || preg_match('/Symbian/i', $useragent) || preg_match('/Nokia/i', $useragent));
}
function is_samsung() {
global $useragent;
return(preg_match('/Samsung/i', $useragent));
}
function is_samsung_galaxy_tab() {
global $useragent;
return(preg_match('/SPH-P100/i', $useragent));
}
function is_sony_ericsson() {
global $useragent;
return(preg_match('/SonyEricsson/i', $useragent));
}
function is_nintendo() {
global $useragent;
return(preg_match('/Nintendo DSi/i', $useragent) || preg_match('/Nintendo DS/i', $useragent));
}
function is_handheld() {
return(is_iphone() || is_ipad() || is_ipod() || is_android() || is_blackberry() || is_opera_mobile() || is_palm() || is_symbian() || is_windows_mobile() || is_lg() || is_motorola() || is_nokia() || is_samsung() || is_samsung_galaxy_tab() || is_sony_ericsson() || is_nintendo());
}
function is_mobile() {
global $windowWidth, $mobileMaxWidth, $tabletMaxWidth;
if (is_tablet()) { return false; } // this catches the problem where an Android device may also be a tablet device
$mobile = (is_iphone() || is_ipod() || is_android() || is_blackberry() || is_opera_mobile() || is_palm() || is_symbian() || is_windows_mobile() || is_lg() || is_motorola() || is_nokia() || is_samsung() || is_sony_ericsson() || is_nintendo());
if (($windowWidth > 0) && ($windowWidth < $mobileMaxWidth)) {
$mobile = true;
} elseif ($windowWidth >= $mobileMaxWidth) {
$mobile = false;
}
return $mobile;
}
function is_ios() {
return(is_iphone() || is_ipad() || is_ipod());
}
function is_tablet() {
global $windowWidth, $mobileMaxWidth, $tabletMaxWidth;
$tablet = (is_ipad() || is_samsung_galaxy_tab());
if (($windowWidth >= $mobileMaxWidth) && ($windowWidth < $tabletMaxWidth)) { // betweet tablet sizes
$tablet = true;
} elseif ((($windowWidth > 0) && ($windowWidth < $mobileMaxWidth)) || ($windowWidth >= $tabletMaxWidth ) ) { // don't use else, otherwise the initial UA sting gets overwritten
$tablet = false;
}
return $tablet;
}
function is_desktop() {
return(!is_mobile() && !is_tablet());
}
function is_tablet_or_desktop() {
return(!is_mobile());
}
function is_touch_device() {
global $touchEnabled;
if ($touchEnabled=="true" || (is_ios() || is_samsung_galaxy_tab()) ) {
return true;
} else {
return false;
}
}
function is_not_touch_device() {
return !is_touch_device();
}
// add JS Cookie Setting Script, depends on jQuery
function addCookieScript() {
wp_register_script('cookie-js', plugins_url('/cookie.js', __FILE__, array('jquery'), '1.0', false) ); // depends on jQuery
wp_enqueue_script('cookie-js');
}
add_action('wp_enqueue_scripts', 'addCookieScript');
?>