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();
|
2008-09-26 18:27:48 -04:00
|
|
|
$title = wp_specialchars( strip_tags( $title ) );
|
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'); ?>" />
|
2008-09-26 18:27:48 -04:00
|
|
|
<title><?php bloginfo('name') ?> › <?php echo $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-09-27 00:56:51 -04:00
|
|
|
<?php
|
|
|
|
if ( 'index.php' == $pagenow ) {
|
|
|
|
$breadcrumb = __('Dashboard');
|
|
|
|
} else {
|
|
|
|
$breadcrumb = '<a href="index.php">' . __('Dashboard') . '</a> › ' . $title;
|
|
|
|
}
|
|
|
|
?>
|
2008-09-29 05:26:21 -04:00
|
|
|
<img id="logo50" src="images/logo50.png" alt="" /> <h1><?php if ( '' == get_bloginfo('name', 'display') ) echo ' '; else echo get_bloginfo('name', 'display'); ?><span id="breadcrumb"><?php echo $breadcrumb ?></span></h1>
|
2004-04-28 15:49:27 -04:00
|
|
|
</div>
|
2008-05-19 11:41:31 -04:00
|
|
|
|
2008-09-30 16:49:40 -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 wp_logout_url() ?>" title="<?php _e('Log Out') ?>"><?php _e('Log Out'); ?></a></p></div>
|
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
|
|
|
}
|
2008-09-25 19:51:33 -04:00
|
|
|
|
|
|
|
favorite_actions();
|
|
|
|
|
2004-11-25 10:45:16 -05:00
|
|
|
?>
|