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'));
|
2010-05-02 14:39:31 -04:00
|
|
|
if ( ! defined( 'WP_ADMIN' ) )
|
|
|
|
require_once( './admin.php' );
|
2006-05-22 13:16:05 -04:00
|
|
|
|
|
|
|
get_admin_page_title();
|
2009-05-18 11:11:07 -04:00
|
|
|
$title = esc_html( strip_tags( $title ) );
|
2010-07-30 16:34:54 -04:00
|
|
|
|
2010-11-18 18:02:52 -05:00
|
|
|
if ( is_network_admin() )
|
|
|
|
$admin_title = __( 'Network Admin' );
|
|
|
|
elseif ( is_user_admin() )
|
|
|
|
$admin_title = __( 'Global Dashboard' );
|
|
|
|
else
|
|
|
|
$admin_title = get_bloginfo( 'name' );
|
|
|
|
|
|
|
|
if ( $admin_title == $title )
|
|
|
|
$admin_title = sprintf( __( '%1$s — WordPress' ), $title );
|
|
|
|
else
|
|
|
|
$admin_title = sprintf( __( '%1$s ‹ %2$s — WordPress' ), $title, $admin_title );
|
|
|
|
|
2010-11-09 13:03:06 -05:00
|
|
|
$admin_title = apply_filters( 'admin_title', $admin_title, $title );
|
|
|
|
|
2008-12-05 00:33:36 -05:00
|
|
|
wp_user_settings();
|
2009-04-30 03:17:05 -04:00
|
|
|
wp_menu_unfold();
|
2010-07-30 16:34:54 -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">
|
2009-05-11 17:07:21 -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'); ?>" />
|
2010-11-09 13:03:06 -05:00
|
|
|
<title><?php echo $admin_title; ?></title>
|
2008-03-02 15:17:30 -05:00
|
|
|
<?php
|
2008-05-21 19:24:23 -04:00
|
|
|
|
2010-10-24 15:22:39 -04:00
|
|
|
wp_admin_css( 'global' );
|
2008-02-10 03:10:11 -05:00
|
|
|
wp_admin_css();
|
2010-10-24 15:22:39 -04:00
|
|
|
wp_admin_css( 'colors' );
|
|
|
|
wp_admin_css( 'ie' );
|
2010-01-06 21:33:23 -05:00
|
|
|
if ( is_multisite() )
|
2010-10-24 15:22:39 -04:00
|
|
|
wp_admin_css( 'ms' );
|
2009-01-12 08:43:17 -05:00
|
|
|
wp_enqueue_script('utils');
|
2008-05-21 19:24:23 -04:00
|
|
|
|
2009-06-03 03:06:45 -04:00
|
|
|
$admin_body_class = preg_replace('/[^a-z0-9_-]+/i', '-', $hook_suffix);
|
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[
|
2009-01-12 08:43:17 -05: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();}}};
|
2010-03-02 13:06:14 -05:00
|
|
|
var userSettings = {
|
2010-03-17 12:27:25 -04:00
|
|
|
'url': '<?php echo SITECOOKIEPATH; ?>',
|
2010-03-02 13:06:14 -05:00
|
|
|
'uid': '<?php if ( ! isset($current_user) ) $current_user = wp_get_current_user(); echo $current_user->ID; ?>',
|
|
|
|
'time':'<?php echo time() ?>'
|
|
|
|
},
|
2010-03-17 12:27:25 -04:00
|
|
|
ajaxurl = '<?php echo admin_url('admin-ajax.php'); ?>',
|
|
|
|
pagenow = '<?php echo $current_screen->id; ?>',
|
|
|
|
typenow = '<?php if ( isset($current_screen->post_type) ) echo $current_screen->post_type; ?>',
|
|
|
|
adminpage = '<?php echo $admin_body_class; ?>',
|
2010-04-22 17:39:37 -04:00
|
|
|
thousandsSeparator = '<?php echo addslashes( $wp_locale->number_format['thousands_sep'] ); ?>',
|
2010-05-27 14:57:07 -04:00
|
|
|
decimalPoint = '<?php echo addslashes( $wp_locale->number_format['decimal_point'] ); ?>',
|
|
|
|
isRtl = <?php echo (int) is_rtl(); ?>;
|
2008-03-10 20:58:37 -04:00
|
|
|
//]]>
|
2003-05-22 08:12:53 -04:00
|
|
|
</script>
|
2008-10-02 07:04:09 -04:00
|
|
|
<?php
|
2006-08-28 19:08:48 -04:00
|
|
|
|
2010-01-21 01:53:33 -05:00
|
|
|
if ( in_array( $pagenow, array('post.php', 'post-new.php') ) ) {
|
2009-01-12 08:43:17 -05:00
|
|
|
wp_enqueue_script('quicktags');
|
2008-10-02 12:30:14 -04:00
|
|
|
}
|
|
|
|
|
2009-01-15 02:43:35 -05:00
|
|
|
do_action('admin_enqueue_scripts', $hook_suffix);
|
2008-11-12 12:11:49 -05:00
|
|
|
do_action("admin_print_styles-$hook_suffix");
|
|
|
|
do_action('admin_print_styles');
|
|
|
|
do_action("admin_print_scripts-$hook_suffix");
|
|
|
|
do_action('admin_print_scripts');
|
|
|
|
do_action("admin_head-$hook_suffix");
|
|
|
|
do_action('admin_head');
|
2009-04-04 09:40:21 -04:00
|
|
|
|
2010-01-26 13:16:53 -05:00
|
|
|
if ( get_user_setting('mfold') == 'f' )
|
2009-04-29 01:43:03 -04:00
|
|
|
$admin_body_class .= ' folded';
|
2010-12-13 16:21:50 -05:00
|
|
|
|
2010-11-26 17:05:54 -05:00
|
|
|
if ( is_admin_bar_showing() )
|
2010-12-13 16:21:50 -05:00
|
|
|
$admin_body_class .= ' admin-bar';
|
2009-02-04 10:05:57 -05:00
|
|
|
|
2009-04-04 13:07:31 -04:00
|
|
|
if ( $is_iphone ) { ?>
|
|
|
|
<style type="text/css">.row-actions{visibility:visible;}</style>
|
|
|
|
<?php } ?>
|
|
|
|
</head>
|
|
|
|
<body class="wp-admin no-js <?php echo apply_filters( 'admin_body_class', '' ) . " $admin_body_class"; ?>">
|
2008-12-27 07:18:38 -05:00
|
|
|
<script type="text/javascript">
|
2009-03-24 11:27:17 -04:00
|
|
|
//<![CDATA[
|
2009-02-04 10:05:57 -05:00
|
|
|
(function(){
|
2009-04-04 13:07:31 -04:00
|
|
|
var c = document.body.className;
|
|
|
|
c = c.replace(/no-js/, 'js');
|
|
|
|
document.body.className = c;
|
2009-02-04 10:05:57 -05:00
|
|
|
})();
|
2009-03-24 11:27:17 -04:00
|
|
|
//]]>
|
2008-12-27 07:18:38 -05:00
|
|
|
</script>
|
|
|
|
|
2008-01-13 22:16:56 -05:00
|
|
|
<div id="wpwrap">
|
2011-05-04 16:15:05 -04:00
|
|
|
<?php require(ABSPATH . 'wp-admin/menu-header.php'); ?>
|
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
|
2010-07-30 16:34:54 -04:00
|
|
|
|
|
|
|
if ( is_network_admin() )
|
2010-11-18 18:02:52 -05:00
|
|
|
$blog_name = sprintf( __('%s Network Admin'), esc_html($current_site->site_name) );
|
2010-11-09 17:00:50 -05:00
|
|
|
elseif ( is_user_admin() )
|
2010-11-18 18:02:52 -05:00
|
|
|
$blog_name = sprintf( __('%s Global Dashboard'), esc_html($current_site->site_name) );
|
2010-07-30 16:34:54 -04:00
|
|
|
else
|
|
|
|
$blog_name = get_bloginfo('name', 'display');
|
2008-12-10 01:19:24 -05:00
|
|
|
if ( '' == $blog_name ) {
|
2010-10-26 21:48:08 -04:00
|
|
|
$blog_name = __( 'Visit Site' );
|
2008-12-10 01:19:24 -05:00
|
|
|
} else {
|
2008-12-10 13:05:12 -05:00
|
|
|
$blog_name_excerpt = wp_html_excerpt($blog_name, 40);
|
2008-12-10 01:19:24 -05:00
|
|
|
if ( $blog_name != $blog_name_excerpt )
|
|
|
|
$blog_name_excerpt = trim($blog_name_excerpt) . '…';
|
|
|
|
$blog_name = $blog_name_excerpt;
|
2010-01-26 13:16:53 -05:00
|
|
|
unset($blog_name_excerpt);
|
2008-12-10 01:19:24 -05:00
|
|
|
}
|
2008-11-09 15:02:59 -05:00
|
|
|
$title_class = '';
|
2008-11-10 13:54:18 -05:00
|
|
|
if ( function_exists('mb_strlen') ) {
|
|
|
|
if ( mb_strlen($blog_name, 'UTF-8') > 30 )
|
|
|
|
$title_class = 'class="long-title"';
|
|
|
|
} else {
|
|
|
|
if ( strlen($blog_name) > 30 )
|
|
|
|
$title_class = 'class="long-title"';
|
|
|
|
}
|
2008-09-27 00:56:51 -04:00
|
|
|
?>
|
2008-10-02 07:04:09 -04:00
|
|
|
|
2011-05-04 16:15:05 -04:00
|
|
|
<img id="header-logo" src="<?php echo esc_url( includes_url( 'images/blank.gif' ) ); ?>" alt="" width="16" height="16" />
|
2010-04-19 09:33:18 -04:00
|
|
|
<h1 id="site-heading" <?php echo $title_class ?>>
|
2010-05-03 14:16:22 -04:00
|
|
|
<a href="<?php echo trailingslashit( get_bloginfo( 'url' ) ); ?>" title="<?php esc_attr_e('Visit Site') ?>">
|
2010-04-19 09:33:18 -04:00
|
|
|
<span id="site-title"><?php echo $blog_name ?></span>
|
|
|
|
</a>
|
|
|
|
</h1>
|
2008-05-19 11:41:31 -04:00
|
|
|
|
2011-05-06 19:06:24 -04:00
|
|
|
<?php
|
2010-02-28 05:23:55 -05:00
|
|
|
|
2011-05-06 19:06:24 -04:00
|
|
|
do_action('in_admin_header');
|
|
|
|
|
|
|
|
// Generate user profile and info links.
|
|
|
|
$howdy = sprintf( __('Howdy, <a href="%1$s" title="Edit your profile">%2$s</a>'), 'profile.php', $user_identity );
|
2010-02-28 05:23:55 -05:00
|
|
|
$links = array();
|
2011-05-06 19:06:24 -04:00
|
|
|
|
2010-07-30 16:34:54 -04:00
|
|
|
if ( is_multisite() && is_super_admin() ) {
|
|
|
|
if ( !is_network_admin() )
|
2011-05-06 19:06:24 -04:00
|
|
|
$links[10] = '<a href="' . network_admin_url() . '" title="' . ( ! empty( $update_title ) ? $update_title : esc_attr__('Network Admin') ) . '">' . __('Network Admin') . ( ! empty( $total_update_count ) ? ' (' . number_format_i18n( $total_update_count ) . ')' : '' ) . '</a>';
|
2010-12-10 12:25:04 -05:00
|
|
|
else
|
2011-05-06 19:06:24 -04:00
|
|
|
$links[10] = '<a href="' . get_dashboard_url( get_current_user_id() ) . '" title="' . esc_attr__('Site Admin') . '">' . __('Site Admin') . '</a>';
|
2010-07-30 16:34:54 -04:00
|
|
|
}
|
2011-05-06 19:06:24 -04:00
|
|
|
$links[15] = '<a href="' . wp_logout_url() . '" title="' . esc_attr__('Log Out') . '">' . __('Log Out') . '</a>';
|
|
|
|
|
|
|
|
$links = apply_filters( 'admin_user_info_links', $links, $current_user );
|
|
|
|
ksort( $links );
|
2010-02-28 05:23:55 -05:00
|
|
|
|
2011-05-06 19:06:24 -04:00
|
|
|
// Trim whitespace and pipes from links, then convert to list items.
|
|
|
|
$links = array_map( 'trim', $links, array_fill( 0, count( $links ), " |\n\t" ) );
|
|
|
|
$links = '<li>' . implode( '</li><li>', $links ) . '</li>';
|
2010-02-28 05:23:55 -05:00
|
|
|
|
2011-05-06 19:06:24 -04:00
|
|
|
?>
|
|
|
|
|
|
|
|
<div id="wphead-info">
|
|
|
|
<div id="user_info">
|
2011-05-09 13:48:14 -04:00
|
|
|
<p><?php echo $howdy; ?></p>
|
|
|
|
<div id="user_info_arrow"></div>
|
2011-05-06 19:06:24 -04:00
|
|
|
<div id="user_info_links_wrap"><div id="user_info_links">
|
|
|
|
<ul><?php echo $links; ?></ul>
|
|
|
|
</div></div>
|
|
|
|
</div>
|
2008-10-17 01:48:00 -04:00
|
|
|
</div>
|
2011-05-06 19:06:24 -04:00
|
|
|
|
2008-10-18 12:54:14 -04:00
|
|
|
</div>
|
|
|
|
|
2008-08-29 02:36:31 -04:00
|
|
|
<div id="wpbody">
|
2010-01-15 11:58:36 -05:00
|
|
|
<?php
|
2011-01-04 03:36:06 -05:00
|
|
|
unset($title_class, $blog_name, $total_update_count, $update_title);
|
2010-01-26 13:16:53 -05:00
|
|
|
|
2010-01-15 11:58:36 -05:00
|
|
|
$current_screen->parent_file = $parent_file;
|
|
|
|
$current_screen->parent_base = preg_replace('/\?.*$/', '', $parent_file);
|
|
|
|
$current_screen->parent_base = str_replace('.php', '', $current_screen->parent_base);
|
|
|
|
?>
|
2008-10-26 21:22:24 -04:00
|
|
|
|
2008-08-29 02:36:31 -04:00
|
|
|
<div id="wpbody-content">
|
|
|
|
<?php
|
2010-01-15 11:58:36 -05:00
|
|
|
screen_meta($current_screen);
|
2008-11-28 19:36:26 -05:00
|
|
|
|
2010-11-06 13:40:12 -04:00
|
|
|
if ( is_network_admin() )
|
2010-08-02 11:36:57 -04:00
|
|
|
do_action('network_admin_notices');
|
2010-11-06 13:40:12 -04:00
|
|
|
elseif ( is_user_admin() )
|
|
|
|
do_action('user_admin_notices');
|
|
|
|
else
|
2010-12-16 22:46:47 -05:00
|
|
|
do_action('admin_notices');
|
2010-08-02 11:36:57 -04:00
|
|
|
|
2010-12-16 22:46:47 -05:00
|
|
|
do_action('all_admin_notices');
|
2008-11-11 17:40:16 -05:00
|
|
|
|
2010-01-26 13:16:53 -05:00
|
|
|
if ( $parent_file == 'options-general.php' )
|
2007-07-27 17:28:01 -04:00
|
|
|
require(ABSPATH . 'wp-admin/options-head.php');
|