author | ymh <ymh.work@gmail.com> |
Wed, 21 Sep 2022 18:19:35 +0200 | |
changeset 18 | be944660c56a |
parent 16 | a86126ab1dd4 |
child 19 | 3d72ae0968f4 |
permissions | -rw-r--r-- |
0 | 1 |
<?php |
2 |
/** |
|
3 |
* Creates common globals for the rest of WordPress |
|
4 |
* |
|
5 |
* Sets $pagenow global which is the current page. Checks |
|
6 |
* for the browser to set which one is currently being used. |
|
7 |
* |
|
8 |
* Detects which user environment WordPress is being used on. |
|
5 | 9 |
* Only attempts to check for Apache, Nginx and IIS -- three web |
10 |
* servers with known pretty permalink capability. |
|
11 |
* |
|
12 |
* Note: Though Nginx is detected, WordPress does not currently |
|
16 | 13 |
* generate rewrite rules for it. See https://wordpress.org/support/article/nginx/ |
0 | 14 |
* |
15 |
* @package WordPress |
|
16 |
*/ |
|
17 |
||
18 |
global $pagenow, |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
19 |
$is_lynx, $is_gecko, $is_winIE, $is_macIE, $is_opera, $is_NS4, $is_safari, $is_chrome, $is_iphone, $is_IE, $is_edge, |
5 | 20 |
$is_apache, $is_IIS, $is_iis7, $is_nginx; |
0 | 21 |
|
16 | 22 |
// On which page are we? |
0 | 23 |
if ( is_admin() ) { |
16 | 24 |
// wp-admin pages are checked more carefully. |
9 | 25 |
if ( is_network_admin() ) { |
26 |
preg_match( '#/wp-admin/network/?(.*?)$#i', $_SERVER['PHP_SELF'], $self_matches ); |
|
27 |
} elseif ( is_user_admin() ) { |
|
28 |
preg_match( '#/wp-admin/user/?(.*?)$#i', $_SERVER['PHP_SELF'], $self_matches ); |
|
29 |
} else { |
|
30 |
preg_match( '#/wp-admin/?(.*?)$#i', $_SERVER['PHP_SELF'], $self_matches ); |
|
31 |
} |
|
0 | 32 |
$pagenow = $self_matches[1]; |
9 | 33 |
$pagenow = trim( $pagenow, '/' ); |
34 |
$pagenow = preg_replace( '#\?.*?$#', '', $pagenow ); |
|
0 | 35 |
if ( '' === $pagenow || 'index' === $pagenow || 'index.php' === $pagenow ) { |
36 |
$pagenow = 'index.php'; |
|
37 |
} else { |
|
9 | 38 |
preg_match( '#(.*?)(/|$)#', $pagenow, $self_matches ); |
39 |
$pagenow = strtolower( $self_matches[1] ); |
|
40 |
if ( '.php' !== substr( $pagenow, -4, 4 ) ) { |
|
16 | 41 |
$pagenow .= '.php'; // For `Options +Multiviews`: /wp-admin/themes/index.php (themes.php is queried). |
9 | 42 |
} |
0 | 43 |
} |
44 |
} else { |
|
9 | 45 |
if ( preg_match( '#([^/]+\.php)([?/].*?)?$#i', $_SERVER['PHP_SELF'], $self_matches ) ) { |
46 |
$pagenow = strtolower( $self_matches[1] ); |
|
47 |
} else { |
|
0 | 48 |
$pagenow = 'index.php'; |
9 | 49 |
} |
0 | 50 |
} |
9 | 51 |
unset( $self_matches ); |
0 | 52 |
|
16 | 53 |
// Simple browser detection. |
54 |
$is_lynx = false; |
|
55 |
$is_gecko = false; |
|
56 |
$is_winIE = false; |
|
57 |
$is_macIE = false; |
|
58 |
$is_opera = false; |
|
59 |
$is_NS4 = false; |
|
60 |
$is_safari = false; |
|
61 |
$is_chrome = false; |
|
62 |
$is_iphone = false; |
|
63 |
$is_edge = false; |
|
0 | 64 |
|
9 | 65 |
if ( isset( $_SERVER['HTTP_USER_AGENT'] ) ) { |
66 |
if ( strpos( $_SERVER['HTTP_USER_AGENT'], 'Lynx' ) !== false ) { |
|
0 | 67 |
$is_lynx = true; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
68 |
} elseif ( strpos( $_SERVER['HTTP_USER_AGENT'], 'Edge' ) !== false ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
69 |
$is_edge = true; |
9 | 70 |
} elseif ( stripos( $_SERVER['HTTP_USER_AGENT'], 'chrome' ) !== false ) { |
0 | 71 |
if ( stripos( $_SERVER['HTTP_USER_AGENT'], 'chromeframe' ) !== false ) { |
72 |
$is_admin = is_admin(); |
|
73 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
74 |
* Filters whether Google Chrome Frame should be used, if available. |
0 | 75 |
* |
76 |
* @since 3.2.0 |
|
77 |
* |
|
78 |
* @param bool $is_admin Whether to use the Google Chrome Frame. Default is the value of is_admin(). |
|
79 |
*/ |
|
16 | 80 |
$is_chrome = apply_filters( 'use_google_chrome_frame', $is_admin ); |
81 |
if ( $is_chrome ) { |
|
0 | 82 |
header( 'X-UA-Compatible: chrome=1' ); |
9 | 83 |
} |
0 | 84 |
$is_winIE = ! $is_chrome; |
85 |
} else { |
|
86 |
$is_chrome = true; |
|
87 |
} |
|
9 | 88 |
} elseif ( stripos( $_SERVER['HTTP_USER_AGENT'], 'safari' ) !== false ) { |
0 | 89 |
$is_safari = true; |
9 | 90 |
} elseif ( ( strpos( $_SERVER['HTTP_USER_AGENT'], 'MSIE' ) !== false || strpos( $_SERVER['HTTP_USER_AGENT'], 'Trident' ) !== false ) && strpos( $_SERVER['HTTP_USER_AGENT'], 'Win' ) !== false ) { |
0 | 91 |
$is_winIE = true; |
9 | 92 |
} elseif ( strpos( $_SERVER['HTTP_USER_AGENT'], 'MSIE' ) !== false && strpos( $_SERVER['HTTP_USER_AGENT'], 'Mac' ) !== false ) { |
0 | 93 |
$is_macIE = true; |
9 | 94 |
} elseif ( strpos( $_SERVER['HTTP_USER_AGENT'], 'Gecko' ) !== false ) { |
0 | 95 |
$is_gecko = true; |
9 | 96 |
} elseif ( strpos( $_SERVER['HTTP_USER_AGENT'], 'Opera' ) !== false ) { |
0 | 97 |
$is_opera = true; |
9 | 98 |
} elseif ( strpos( $_SERVER['HTTP_USER_AGENT'], 'Nav' ) !== false && strpos( $_SERVER['HTTP_USER_AGENT'], 'Mozilla/4.' ) !== false ) { |
0 | 99 |
$is_NS4 = true; |
100 |
} |
|
101 |
} |
|
102 |
||
9 | 103 |
if ( $is_safari && stripos( $_SERVER['HTTP_USER_AGENT'], 'mobile' ) !== false ) { |
0 | 104 |
$is_iphone = true; |
9 | 105 |
} |
0 | 106 |
|
107 |
$is_IE = ( $is_macIE || $is_winIE ); |
|
108 |
||
16 | 109 |
// Server detection. |
0 | 110 |
|
111 |
/** |
|
112 |
* Whether the server software is Apache or something else |
|
9 | 113 |
* |
0 | 114 |
* @global bool $is_apache |
115 |
*/ |
|
9 | 116 |
$is_apache = ( strpos( $_SERVER['SERVER_SOFTWARE'], 'Apache' ) !== false || strpos( $_SERVER['SERVER_SOFTWARE'], 'LiteSpeed' ) !== false ); |
0 | 117 |
|
118 |
/** |
|
119 |
* Whether the server software is Nginx or something else |
|
9 | 120 |
* |
0 | 121 |
* @global bool $is_nginx |
122 |
*/ |
|
9 | 123 |
$is_nginx = ( strpos( $_SERVER['SERVER_SOFTWARE'], 'nginx' ) !== false ); |
0 | 124 |
|
125 |
/** |
|
126 |
* Whether the server software is IIS or something else |
|
9 | 127 |
* |
0 | 128 |
* @global bool $is_IIS |
129 |
*/ |
|
9 | 130 |
$is_IIS = ! $is_apache && ( strpos( $_SERVER['SERVER_SOFTWARE'], 'Microsoft-IIS' ) !== false || strpos( $_SERVER['SERVER_SOFTWARE'], 'ExpressionDevServer' ) !== false ); |
0 | 131 |
|
132 |
/** |
|
133 |
* Whether the server software is IIS 7.X or greater |
|
9 | 134 |
* |
0 | 135 |
* @global bool $is_iis7 |
136 |
*/ |
|
18 | 137 |
$is_iis7 = $is_IIS && (int) substr( $_SERVER['SERVER_SOFTWARE'], strpos( $_SERVER['SERVER_SOFTWARE'], 'Microsoft-IIS/' ) + 14 ) >= 7; |
0 | 138 |
|
139 |
/** |
|
140 |
* Test if the current browser runs on a mobile device (smart phone, tablet, etc.) |
|
141 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
142 |
* @since 3.4.0 |
9 | 143 |
* |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
144 |
* @return bool |
0 | 145 |
*/ |
146 |
function wp_is_mobile() { |
|
9 | 147 |
if ( empty( $_SERVER['HTTP_USER_AGENT'] ) ) { |
0 | 148 |
$is_mobile = false; |
16 | 149 |
} elseif ( strpos( $_SERVER['HTTP_USER_AGENT'], 'Mobile' ) !== false // Many mobile devices (all iPhone, iPad, etc.) |
9 | 150 |
|| strpos( $_SERVER['HTTP_USER_AGENT'], 'Android' ) !== false |
151 |
|| strpos( $_SERVER['HTTP_USER_AGENT'], 'Silk/' ) !== false |
|
152 |
|| strpos( $_SERVER['HTTP_USER_AGENT'], 'Kindle' ) !== false |
|
153 |
|| strpos( $_SERVER['HTTP_USER_AGENT'], 'BlackBerry' ) !== false |
|
154 |
|| strpos( $_SERVER['HTTP_USER_AGENT'], 'Opera Mini' ) !== false |
|
155 |
|| strpos( $_SERVER['HTTP_USER_AGENT'], 'Opera Mobi' ) !== false ) { |
|
0 | 156 |
$is_mobile = true; |
157 |
} else { |
|
158 |
$is_mobile = false; |
|
159 |
} |
|
160 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
161 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
162 |
* Filters whether the request should be treated as coming from a mobile device or not. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
163 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
164 |
* @since 4.9.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
165 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
166 |
* @param bool $is_mobile Whether the request is from a mobile device or not. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
167 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
168 |
return apply_filters( 'wp_is_mobile', $is_mobile ); |
0 | 169 |
} |