2006-02-16 20:29:33 -05:00
< ? php
2008-08-11 16:26:31 -04:00
/**
* WordPress Administration Template Header
*
* @ package WordPress
* @ subpackage Administration
*/
2007-06-02 01:21:18 -04:00
@ header ( 'Content-Type: ' . get_option ( 'html_type' ) . '; charset=' . get_option ( 'blog_charset' ));
2006-01-10 00:16:17 -05:00
if ( ! isset ( $_GET [ " page " ])) require_once ( 'admin.php' );
2008-05-19 11:41:31 -04:00
wp_enqueue_script ( 'wp-gears' );
2006-05-22 13:16:05 -04:00
2008-02-29 18:27:02 -05:00
$min_width_pages = array ( 'post.php' , 'post-new.php' , 'page.php' , 'page-new.php' , 'widgets.php' , 'comment.php' , 'link.php' );
2008-02-23 21:04:11 -05:00
$the_current_page = preg_replace ( '|^.*/wp-admin/|i' , '' , $_SERVER [ 'PHP_SELF' ]);
$ie6_no_scrollbar = true ;
2008-08-14 02:30:38 -04:00
/**
* Append 'minwidth' to value .
*
* @ param mixed $c
* @ return string
*/
2008-02-23 21:04:11 -05:00
function add_minwidth ( $c ) {
return $c . 'minwidth ' ;
}
if ( in_array ( $the_current_page , $min_width_pages ) ) {
$ie6_no_scrollbar = false ;
add_filter ( 'admin_body_class' , 'add_minwidth' );
}
2006-05-22 13:16:05 -04:00
get_admin_page_title ();
2006-08-28 19:08:48 -04:00
2006-01-10 00:16:17 -05:00
?>
2004-10-18 23:03:06 -04:00
<! DOCTYPE html PUBLIC " -//W3C//DTD XHTML 1.0 Transitional//EN " " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd " >
2007-04-04 19:54:47 -04:00
< html xmlns = " http://www.w3.org/1999/xhtml " < ? php do_action ( 'admin_xml_ns' ); ?> <?php language_attributes(); ?>>
2003-05-22 08:12:53 -04:00
< head >
2006-08-30 17:46:31 -04:00
< meta http - equiv = " Content-Type " content = " <?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?> " />
2006-11-18 01:09:48 -05:00
< title >< ? php bloginfo ( 'name' ) ?> › <?php echo wp_specialchars( strip_tags( $title ) ); ?> — WordPress</title>
2008-03-02 15:17:30 -05:00
< ? php
2008-05-21 19:24:23 -04:00
2008-02-10 03:10:11 -05:00
wp_admin_css ( 'css/global' );
wp_admin_css ();
2008-03-11 17:06:03 -04:00
wp_admin_css ( 'css/colors' );
2008-05-21 19:24:23 -04:00
wp_admin_css ( 'css/ie' );
2008-02-10 03:10:11 -05:00
?>
2004-08-01 04:04:39 -04:00
< script type = " text/javascript " >
2003-12-21 19:09:59 -05:00
//<![CDATA[
2008-03-10 20:58:37 -04:00
addLoadEvent = function ( func ) { if ( typeof jQuery != " undefined " ) jQuery ( document ) . ready ( func ); else if ( typeof wpOnload != 'function' ){ wpOnload = func ;} else { var oldonload = wpOnload ; wpOnload = function (){ oldonload (); func ();}}};
//]]>
2003-05-22 08:12:53 -04:00
</ script >
2008-02-23 21:04:11 -05:00
< ? php if ( ( $parent_file != 'link-manager.php' ) && ( $parent_file != 'options-general.php' ) && $ie6_no_scrollbar ) : ?>
2005-12-22 22:24:10 -05:00
< style type = " text/css " >* html { overflow - x : hidden ; } </ style >
2006-08-28 19:08:48 -04:00
< ? php endif ;
2008-05-28 18:15:46 -04:00
$hook_suffixes = array ();
if ( isset ( $page_hook ) )
$hook_suffixes [] = " - $page_hook " ;
else if ( isset ( $plugin_page ) )
$hook_suffixes [] = " - $plugin_page " ;
else if ( isset ( $pagenow ) )
$hook_suffixes [] = " - $pagenow " ;
$hook_suffixes [] = '' ;
foreach ( $hook_suffixes as $hook_suffix )
do_action ( " admin_print_styles $hook_suffix " ); // do_action( 'admin_print_styles-XXX' ); do_action( 'admin_print_styles' );
foreach ( $hook_suffixes as $hook_suffix )
do_action ( " admin_print_scripts $hook_suffix " ); // do_action( 'admin_print_scripts-XXX' ); do_action( 'admin_print_scripts' );
foreach ( $hook_suffixes as $hook_suffix )
do_action ( " admin_head $hook_suffix " ); // do_action( 'admin_head-XXX' ); do_action( 'admin_head' );
unset ( $hook_suffixes , $hook_suffix );
2008-05-21 01:56:04 -04:00
2006-08-28 19:08:48 -04:00
?>
2003-05-22 08:12:53 -04:00
</ head >
2007-08-17 06:33:52 -04:00
< body class = " wp-admin <?php echo apply_filters( 'admin_body_class', '' ); ?> " >
2008-01-13 22:16:56 -05:00
< div id = " wpwrap " >
2008-08-31 09:51:52 -04:00
< div id = " sidemenu-bg " >< br /></ div >
2008-01-13 22:16:56 -05:00
< div id = " wpcontent " >
2004-04-28 15:49:27 -04:00
< div id = " wphead " >
2008-07-03 12:05:14 -04:00
< h1 >< ? php if ( '' == get_bloginfo ( 'name' , 'display' ) ) echo ' ' ; else echo get_bloginfo ( 'name' , 'display' ); ?> <span id="viewsite"><a href="<?php echo trailingslashit( get_option('home') ); ?>"><?php _e('Visit Site') ?></a></span></h1>
2004-04-28 15:49:27 -04:00
</ div >
2008-05-19 11:41:31 -04:00
< ? php
2008-08-09 01:36:14 -04:00
if ( ! $is_opera ) {
2008-05-19 11:41:31 -04:00
?>
2008-05-27 20:09:19 -04:00
< div id = " gears-info-box " class = " info-box " style = " display:none; " >
2008-05-19 11:41:31 -04:00
< img src = " images/gear.png " title = " Gear " alt = " " class = " gears-img " />
< div id = " gears-msg1 " >
< h3 class = " info-box-title " >< ? php _e ( 'Speed up WordPress' ); ?> </h3>
2008-06-24 12:57:12 -04:00
< p >< ? php _e ( 'WordPress now has support for Gears, which adds new features to your web browser.' ); ?> <br />
2008-05-19 11:41:31 -04:00
< a href = " http://gears.google.com/ " target = " _blank " style = " font-weight:normal; " >< ? php _e ( 'More information...' ); ?> </a></p>
2008-08-27 02:33:01 -04:00
< p >< ? php _e ( 'After you install and enable Gears, most of WordPress’ images, scripts, and CSS files will be stored locally on your computer. This speeds up page load time.' ); ?> </p>
2008-06-24 12:57:12 -04:00
< p >< strong >< ? php _e ( 'Don’t install on a public or shared computer.' ); ?> </strong></p> <div class="submit"><button onclick="window.location = 'http://gears.google.com/?action=install&return=<?php echo urlencode( admin_url() ); ?>';" class="button"><?php _e('Install Now'); ?></button>
2008-06-28 12:27:21 -04:00
< button class = " button " style = " margin-left:10px; " onclick = " document.getElementById('gears-info-box').style.display='none'; " >< ? php _e ( 'Cancel' ); ?> </button></div>
2008-05-19 11:41:31 -04:00
</ div >
< div id = " gears-msg2 " style = " display:none; " >
2008-06-03 04:14:38 -04:00
< h3 class = " info-box-title " >< ? php _e ( 'Gears Status' ); ?> </h3>
2008-08-27 02:33:01 -04:00
< p >< ? php _e ( 'Gears is installed on this computer, but is not enabled for use with WordPress.' ); ?> </p>
2008-09-05 12:29:03 -04:00
< p >< ? php _e ( 'To enable it click the button below.' ); ?> </p>
2008-08-27 02:33:01 -04:00
< p >< strong >< ? php _e ( 'However, Gears should not be enabled if this is a public or shared computer.' ); ?> </strong></p>
2008-06-03 04:14:38 -04:00
< div class = " submit " >< button class = " button " onclick = " wpGears.getPermission(); " >< ? php _e ( 'Enable Gears' ); ?> </button>
2008-06-28 12:27:21 -04:00
< button class = " button " style = " margin-left:10px; " onclick = " document.getElementById('gears-info-box').style.display='none'; " >< ? php _e ( 'Cancel' ); ?> </button></div>
2008-05-19 11:41:31 -04:00
</ div >
< div id = " gears-msg3 " style = " display:none; " >
2008-06-03 04:14:38 -04:00
< h3 class = " info-box-title " >< ? php _e ( 'Gears Status' ); ?> </h3>
2008-07-23 14:53:43 -04:00
< p >< ? php
2008-08-09 01:36:14 -04:00
2008-09-05 12:29:03 -04:00
if ( $is_chrome )
_e ( 'Gears is installed and enabled on this computer. You can disable it from your browser’s Options, Under the Hood menu.' );
elseif ( $is_safari )
2008-07-23 14:53:43 -04:00
_e ( 'Gears is installed and enabled on this computer. You can disable it from the Safari menu.' );
else
2008-08-27 02:33:01 -04:00
_e ( 'Gears is installed and enabled on this computer. You can disable it from your browser’s Tools menu.' );
2008-08-09 01:36:14 -04:00
2008-07-23 14:53:43 -04:00
?> </p>
2008-08-27 02:33:01 -04:00
< p >< ? php _e ( 'If there are any errors try disabling Gears, reloading the page, and re-enabling Gears.' ); ?> </p>
2008-09-05 12:29:03 -04:00
< p >< ? php _e ( 'Local storage status:' ); ?> <span id="gears-wait"><span style="color:#f00;"><?php _e('Updating files:'); ?></span> <span id="gears-upd-number"></span></span></p>
2008-05-19 11:41:31 -04:00
< div class = " submit " >< button class = " button " onclick = " document.getElementById('gears-info-box').style.display='none'; " >< ? php _e ( 'Close' ); ?> </button></div>
</ div >
2008-09-05 12:29:03 -04:00
< div id = " gears-msg4 " style = " display:none; " >
< h3 class = " info-box-title " >< ? php _e ( 'Gears Status' ); ?> </h3>
< p >< ? php _e ( 'This web site is denied to use Gears.' ); ?> </p>
< p >< ? php
if ( $is_chrome )
_e ( 'To allow it, change the Gears settings from your browser’s Options, Under the Hood menu and reload this page.' );
elseif ( $is_safari )
_e ( 'To allow it, change the Gears settings from the Safari menu and reload this page.' );
else
_e ( 'To allow it, change the Gears settings from your browser’s Tools menu and reload this page.' );
?> </p>
< p >< strong >< ? php _e ( 'However, Gears should not be enabled if this is a public or shared computer.' ); ?> </strong></p>
< div class = " submit " >< button class = " button " onclick = " document.getElementById('gears-info-box').style.display='none'; " >< ? php _e ( 'Cancel' ); ?> </button></div>
</ div >
2008-05-19 11:41:31 -04:00
</ div >
< ? php } ?>
2008-07-22 00:03:36 -04:00
< div id = " user_info " >< p >< ? php printf ( __ ( 'Howdy, <a href="%1$s">%2$s</a>!' ), 'profile.php' , $user_identity ) ?> | <a href="<?php echo site_url('wp-login.php?action=logout', 'login') ?>" title="<?php _e('Log Out') ?>"><?php _e('Log Out'); ?></a> | <?php _e('<a href="http://codex.wordpress.org/">Help</a>') ?> | <?php _e('<a href="http://wordpress.org/support/">Forums</a>'); if ( ! $is_opera ) { ?> | <span id="gears-menu"><a href="#" onclick="wpGears.message(1);return false;"><?php _e('Turbo') ?></a></span><?php } ?></p></div>
2005-08-07 04:14:41 -04:00
2003-05-22 08:12:53 -04:00
< ? php
2007-07-27 17:28:01 -04:00
require ( ABSPATH . 'wp-admin/menu-header.php' );
2008-08-29 02:36:31 -04:00
?>
< div id = " wpbody " >
< div id = " wpbody-content " >
< ? php
do_action ( 'admin_notices' );
2004-10-18 23:03:06 -04:00
2005-11-18 05:10:53 -05:00
if ( $parent_file == 'options-general.php' ) {
2007-07-27 17:28:01 -04:00
require ( ABSPATH . 'wp-admin/options-head.php' );
2004-10-18 23:03:06 -04:00
}
2004-11-25 10:45:16 -05:00
?>