2003-04-21 17:37:11 -04:00
|
|
|
<?php
|
2008-01-04 15:05:07 -05:00
|
|
|
/**
|
|
|
|
* Creates common globals for the rest of WordPress
|
|
|
|
*
|
|
|
|
* Sets $pagenow global which is the current page. Checks
|
|
|
|
* for the browser to set which one is currently being used.
|
|
|
|
*
|
|
|
|
* Detects which user environment WordPress is being used on.
|
|
|
|
* Only attempts to check for Apache and IIS. Two web servers
|
|
|
|
* with known permalink capability.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
*/
|
2003-04-21 17:37:11 -04:00
|
|
|
|
2011-10-18 15:44:00 -04:00
|
|
|
global $pagenow,
|
|
|
|
$is_lynx, $is_gecko, $is_winIE, $is_macIE, $is_opera, $is_NS4, $is_safari, $is_chrome, $is_iphone, $is_IE,
|
|
|
|
$is_apache, $is_IIS, $is_iis7;
|
|
|
|
|
2004-04-15 15:08:51 -04:00
|
|
|
// On which page are we ?
|
2007-09-03 23:21:04 -04:00
|
|
|
if ( is_admin() ) {
|
|
|
|
// wp-admin pages are checked more carefully
|
2010-10-07 15:34:18 -04:00
|
|
|
if ( is_network_admin() )
|
2011-10-18 15:37:07 -04:00
|
|
|
preg_match('#/wp-admin/network/?(.*?)$#i', $_SERVER['PHP_SELF'], $self_matches);
|
2010-10-07 15:34:18 -04:00
|
|
|
elseif ( is_user_admin() )
|
2011-10-18 15:37:07 -04:00
|
|
|
preg_match('#/wp-admin/user/?(.*?)$#i', $_SERVER['PHP_SELF'], $self_matches);
|
2010-10-07 15:34:18 -04:00
|
|
|
else
|
2011-10-18 15:37:07 -04:00
|
|
|
preg_match('#/wp-admin/?(.*?)$#i', $_SERVER['PHP_SELF'], $self_matches);
|
2004-09-15 04:16:58 -04:00
|
|
|
$pagenow = $self_matches[1];
|
2009-08-01 17:12:17 -04:00
|
|
|
$pagenow = trim($pagenow, '/');
|
2007-09-03 23:21:04 -04:00
|
|
|
$pagenow = preg_replace('#\?.*?$#', '', $pagenow);
|
|
|
|
if ( '' === $pagenow || 'index' === $pagenow || 'index.php' === $pagenow ) {
|
|
|
|
$pagenow = 'index.php';
|
|
|
|
} else {
|
|
|
|
preg_match('#(.*?)(/|$)#', $pagenow, $self_matches);
|
|
|
|
$pagenow = strtolower($self_matches[1]);
|
|
|
|
if ( '.php' !== substr($pagenow, -4, 4) )
|
|
|
|
$pagenow .= '.php'; // for Options +Multiviews: /wp-admin/themes/index.php (themes.php is queried)
|
|
|
|
}
|
2004-10-08 22:00:34 -04:00
|
|
|
} else {
|
2011-10-18 15:37:07 -04:00
|
|
|
if ( preg_match('#([^/]+\.php)([?/].*?)?$#i', $_SERVER['PHP_SELF'], $self_matches) )
|
2007-09-03 23:21:04 -04:00
|
|
|
$pagenow = strtolower($self_matches[1]);
|
|
|
|
else
|
|
|
|
$pagenow = 'index.php';
|
2003-04-21 17:37:11 -04:00
|
|
|
}
|
2010-10-07 16:12:49 -04:00
|
|
|
unset($self_matches);
|
2003-04-21 17:37:11 -04:00
|
|
|
|
2004-04-15 15:08:51 -04:00
|
|
|
// Simple browser detection
|
2008-12-02 07:32:54 -05:00
|
|
|
$is_lynx = $is_gecko = $is_winIE = $is_macIE = $is_opera = $is_NS4 = $is_safari = $is_chrome = $is_iphone = false;
|
2006-04-03 20:25:04 -04:00
|
|
|
|
2009-11-26 06:29:54 -05:00
|
|
|
if ( isset($_SERVER['HTTP_USER_AGENT']) ) {
|
|
|
|
if ( strpos($_SERVER['HTTP_USER_AGENT'], 'Lynx') !== false ) {
|
|
|
|
$is_lynx = true;
|
2010-02-13 21:27:19 -05:00
|
|
|
} elseif ( stripos($_SERVER['HTTP_USER_AGENT'], 'chrome') !== false ) {
|
2011-05-25 12:15:00 -04:00
|
|
|
if ( stripos( $_SERVER['HTTP_USER_AGENT'], 'chromeframe' ) !== false ) {
|
|
|
|
if ( $is_chrome = apply_filters( 'use_google_chrome_frame', is_admin() ) )
|
|
|
|
header( 'X-UA-Compatible: chrome=1' );
|
|
|
|
$is_winIE = ! $is_chrome;
|
|
|
|
} else {
|
|
|
|
$is_chrome = true;
|
|
|
|
}
|
2010-02-13 21:27:19 -05:00
|
|
|
} elseif ( stripos($_SERVER['HTTP_USER_AGENT'], 'safari') !== false ) {
|
2009-11-26 06:29:54 -05:00
|
|
|
$is_safari = true;
|
|
|
|
} elseif ( strpos($_SERVER['HTTP_USER_AGENT'], 'Gecko') !== false ) {
|
|
|
|
$is_gecko = true;
|
|
|
|
} elseif ( strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false && strpos($_SERVER['HTTP_USER_AGENT'], 'Win') !== false ) {
|
|
|
|
$is_winIE = true;
|
|
|
|
} elseif ( strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false && strpos($_SERVER['HTTP_USER_AGENT'], 'Mac') !== false ) {
|
|
|
|
$is_macIE = true;
|
|
|
|
} elseif ( strpos($_SERVER['HTTP_USER_AGENT'], 'Opera') !== false ) {
|
|
|
|
$is_opera = true;
|
|
|
|
} elseif ( strpos($_SERVER['HTTP_USER_AGENT'], 'Nav') !== false && strpos($_SERVER['HTTP_USER_AGENT'], 'Mozilla/4.') !== false ) {
|
|
|
|
$is_NS4 = true;
|
|
|
|
}
|
2007-03-10 20:19:16 -05:00
|
|
|
}
|
2006-12-06 22:57:23 -05:00
|
|
|
|
2010-02-13 21:27:19 -05:00
|
|
|
if ( $is_safari && stripos($_SERVER['HTTP_USER_AGENT'], 'mobile') !== false )
|
2008-12-02 07:32:54 -05:00
|
|
|
$is_iphone = true;
|
|
|
|
|
2006-12-06 22:57:23 -05:00
|
|
|
$is_IE = ( $is_macIE || $is_winIE );
|
2003-04-21 17:37:11 -04:00
|
|
|
|
2004-04-15 15:08:51 -04:00
|
|
|
// Server detection
|
2008-01-04 15:05:07 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether the server software is Apache or something else
|
|
|
|
* @global bool $is_apache
|
|
|
|
*/
|
2009-05-18 10:54:16 -04:00
|
|
|
$is_apache = (strpos($_SERVER['SERVER_SOFTWARE'], 'Apache') !== false || strpos($_SERVER['SERVER_SOFTWARE'], 'LiteSpeed') !== false);
|
2008-01-04 15:05:07 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether the server software is IIS or something else
|
|
|
|
* @global bool $is_IIS
|
|
|
|
*/
|
2010-12-14 03:35:48 -05:00
|
|
|
$is_IIS = !$is_apache && (strpos($_SERVER['SERVER_SOFTWARE'], 'Microsoft-IIS') !== false || strpos($_SERVER['SERVER_SOFTWARE'], 'ExpressionDevServer') !== false);
|
2003-04-21 17:37:11 -04:00
|
|
|
|
2009-05-15 22:04:36 -04:00
|
|
|
/**
|
|
|
|
* Whether the server software is IIS 7.X
|
2009-05-18 10:54:16 -04:00
|
|
|
* @global bool $is_iis7
|
2009-05-15 22:04:36 -04:00
|
|
|
*/
|
2010-12-14 03:35:48 -05:00
|
|
|
$is_iis7 = $is_IIS && (strpos($_SERVER['SERVER_SOFTWARE'], 'Microsoft-IIS/7.') !== false);
|
2012-04-09 21:19:30 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Test if the current browser runs on a mobile device (smart phone, tablet, etc.)
|
|
|
|
*
|
|
|
|
* @return bool true|false
|
|
|
|
*/
|
|
|
|
function wp_is_mobile() {
|
|
|
|
static $is_mobile;
|
|
|
|
|
|
|
|
if ( isset($is_mobile) )
|
|
|
|
return $is_mobile;
|
|
|
|
|
|
|
|
if ( empty($_SERVER['HTTP_USER_AGENT']) ) {
|
|
|
|
$is_mobile = false;
|
|
|
|
} elseif ( strpos($_SERVER['HTTP_USER_AGENT'], 'Mobile') !== false // many mobile devices (all iPhone, iPad, etc.)
|
|
|
|
|| strpos($_SERVER['HTTP_USER_AGENT'], 'Android') !== false
|
2012-06-04 12:04:54 -04:00
|
|
|
|| strpos($_SERVER['HTTP_USER_AGENT'], 'Silk/') !== false
|
|
|
|
|| strpos($_SERVER['HTTP_USER_AGENT'], 'Kindle') !== false
|
2012-04-09 21:19:30 -04:00
|
|
|
|| strpos($_SERVER['HTTP_USER_AGENT'], 'BlackBerry') !== false
|
|
|
|
|| strpos($_SERVER['HTTP_USER_AGENT'], 'Opera Mini') !== false ) {
|
|
|
|
$is_mobile = true;
|
|
|
|
} else {
|
|
|
|
$is_mobile = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $is_mobile;
|
|
|
|
}
|