2003-04-21 23:37:11 +02:00
|
|
|
<?php
|
2008-01-04 21:05:07 +01: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 23:37:11 +02:00
|
|
|
|
2004-04-15 21:08:51 +02:00
|
|
|
// On which page are we ?
|
2007-09-04 05:21:04 +02:00
|
|
|
if ( is_admin() ) {
|
|
|
|
// wp-admin pages are checked more carefully
|
|
|
|
preg_match('#/wp-admin/?(.*?)$#i', $PHP_SELF, $self_matches);
|
2004-09-15 10:16:58 +02:00
|
|
|
$pagenow = $self_matches[1];
|
2007-09-04 05:21:04 +02: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-09 04:00:34 +02:00
|
|
|
} else {
|
2007-09-04 05:21:04 +02:00
|
|
|
if ( preg_match('#([^/]+\.php)([?/].*?)?$#i', $PHP_SELF, $self_matches) )
|
|
|
|
$pagenow = strtolower($self_matches[1]);
|
|
|
|
else
|
|
|
|
$pagenow = 'index.php';
|
2003-04-21 23:37:11 +02:00
|
|
|
}
|
|
|
|
|
2004-04-15 21:08:51 +02:00
|
|
|
// Simple browser detection
|
2007-03-11 02:19:16 +01:00
|
|
|
$is_lynx = $is_gecko = $is_winIE = $is_macIE = $is_opera = $is_NS4 = false;
|
2006-04-04 02:25:04 +02:00
|
|
|
|
2007-03-11 02:19:16 +01:00
|
|
|
if (strpos($_SERVER['HTTP_USER_AGENT'], 'Lynx') !== false) {
|
|
|
|
$is_lynx = true;
|
|
|
|
} elseif (strpos($_SERVER['HTTP_USER_AGENT'], 'Gecko') !== false) {
|
|
|
|
$is_gecko = true;
|
2007-03-20 04:18:44 +01:00
|
|
|
} elseif (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false && strpos($_SERVER['HTTP_USER_AGENT'], 'Win') !== false) {
|
2007-03-11 02:19:16 +01:00
|
|
|
$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;
|
|
|
|
}
|
2006-12-07 04:57:23 +01:00
|
|
|
|
|
|
|
$is_IE = ( $is_macIE || $is_winIE );
|
2003-04-21 23:37:11 +02:00
|
|
|
|
2004-04-15 21:08:51 +02:00
|
|
|
// Server detection
|
2008-01-04 21:05:07 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether the server software is Apache or something else
|
|
|
|
* @global bool $is_apache
|
|
|
|
*/
|
2007-03-11 02:19:16 +01:00
|
|
|
$is_apache = ((strpos($_SERVER['SERVER_SOFTWARE'], 'Apache') !== false) || (strpos($_SERVER['SERVER_SOFTWARE'], 'LiteSpeed') !== false)) ? true : false;
|
2008-01-04 21:05:07 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether the server software is IIS or something else
|
|
|
|
* @global bool $is_IIS
|
|
|
|
*/
|
2007-03-11 02:19:16 +01:00
|
|
|
$is_IIS = (strpos($_SERVER['SERVER_SOFTWARE'], 'Microsoft-IIS') !== false) ? true : false;
|
2003-04-21 23:37:11 +02:00
|
|
|
|
2006-12-07 04:57:23 +01:00
|
|
|
?>
|