2006-02-17 02:29:33 +01:00
|
|
|
<?php
|
2008-08-11 22:26:31 +02:00
|
|
|
/**
|
|
|
|
* WordPress Administration Template Header
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Administration
|
|
|
|
*/
|
|
|
|
|
2007-06-02 07:21:18 +02:00
|
|
|
@header('Content-Type: ' . get_option('html_type') . '; charset=' . get_option('blog_charset'));
|
2010-05-02 20:39:31 +02:00
|
|
|
if ( ! defined( 'WP_ADMIN' ) )
|
|
|
|
require_once( './admin.php' );
|
2006-05-22 19:16:05 +02:00
|
|
|
|
2011-08-10 21:54:59 +02:00
|
|
|
// In case admin-header.php is included in a function.
|
2012-04-10 03:19:30 +02:00
|
|
|
global $title, $hook_suffix, $current_screen, $wp_locale, $pagenow, $wp_version,
|
2011-11-14 22:35:44 +01:00
|
|
|
$current_site, $update_title, $total_update_count, $parent_file;
|
2011-08-10 21:54:59 +02:00
|
|
|
|
2011-12-01 04:37:22 +01:00
|
|
|
// Catch plugins that include admin-header.php before admin.php completes.
|
|
|
|
if ( empty( $current_screen ) )
|
|
|
|
set_current_screen();
|
|
|
|
|
2006-05-22 19:16:05 +02:00
|
|
|
get_admin_page_title();
|
2009-05-18 17:11:07 +02:00
|
|
|
$title = esc_html( strip_tags( $title ) );
|
2010-07-30 22:34:54 +02:00
|
|
|
|
2010-11-19 00:02:52 +01: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 19:03:06 +01:00
|
|
|
$admin_title = apply_filters( 'admin_title', $admin_title, $title );
|
|
|
|
|
2008-12-05 06:33:36 +01:00
|
|
|
wp_user_settings();
|
2010-07-30 22:34:54 +02:00
|
|
|
|
2011-10-17 22:57:32 +02:00
|
|
|
_wp_admin_html_begin();
|
2006-01-10 06:16:17 +01:00
|
|
|
?>
|
2010-11-09 19:03:06 +01:00
|
|
|
<title><?php echo $admin_title; ?></title>
|
2008-03-02 21:17:30 +01:00
|
|
|
<?php
|
2008-05-22 01:24:23 +02:00
|
|
|
|
2011-08-21 05:46:43 +02:00
|
|
|
wp_enqueue_style( 'colors' );
|
|
|
|
wp_enqueue_style( 'ie' );
|
2009-01-12 14:43:17 +01:00
|
|
|
wp_enqueue_script('utils');
|
2008-05-22 01:24:23 +02:00
|
|
|
|
2009-06-03 09:06:45 +02:00
|
|
|
$admin_body_class = preg_replace('/[^a-z0-9_-]+/i', '-', $hook_suffix);
|
2008-02-10 09:10:11 +01:00
|
|
|
?>
|
2004-08-01 10:04:39 +02:00
|
|
|
<script type="text/javascript">
|
2009-01-12 14:43:17 +01: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();}}};
|
2012-12-04 20:29:56 +01:00
|
|
|
var ajaxurl = '<?php echo admin_url( 'admin-ajax.php', 'relative' ); ?>',
|
2010-03-17 17:27:25 +01:00
|
|
|
pagenow = '<?php echo $current_screen->id; ?>',
|
2011-11-17 20:50:14 +01:00
|
|
|
typenow = '<?php echo $current_screen->post_type; ?>',
|
2010-03-17 17:27:25 +01:00
|
|
|
adminpage = '<?php echo $admin_body_class; ?>',
|
2010-04-22 23:39:37 +02:00
|
|
|
thousandsSeparator = '<?php echo addslashes( $wp_locale->number_format['thousands_sep'] ); ?>',
|
2010-05-27 20:57:07 +02:00
|
|
|
decimalPoint = '<?php echo addslashes( $wp_locale->number_format['decimal_point'] ); ?>',
|
|
|
|
isRtl = <?php echo (int) is_rtl(); ?>;
|
2003-05-22 14:12:53 +02:00
|
|
|
</script>
|
2008-10-02 13:04:09 +02:00
|
|
|
<?php
|
2006-08-29 01:08:48 +02:00
|
|
|
|
2009-01-15 08:43:35 +01:00
|
|
|
do_action('admin_enqueue_scripts', $hook_suffix);
|
2008-11-12 18:11:49 +01: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 15:40:21 +02:00
|
|
|
|
2010-01-26 19:16:53 +01:00
|
|
|
if ( get_user_setting('mfold') == 'f' )
|
2009-04-29 07:43:03 +02:00
|
|
|
$admin_body_class .= ' folded';
|
2010-12-13 22:21:50 +01:00
|
|
|
|
2012-08-22 00:46:30 +02:00
|
|
|
if ( !get_user_setting('unfold') )
|
|
|
|
$admin_body_class .= ' auto-fold';
|
|
|
|
|
2010-11-26 23:05:54 +01:00
|
|
|
if ( is_admin_bar_showing() )
|
2010-12-13 22:21:50 +01:00
|
|
|
$admin_body_class .= ' admin-bar';
|
2009-02-04 16:05:57 +01:00
|
|
|
|
2011-06-03 00:19:58 +02:00
|
|
|
if ( is_rtl() )
|
|
|
|
$admin_body_class .= ' rtl';
|
|
|
|
|
2011-08-26 21:00:07 +02:00
|
|
|
$admin_body_class .= ' branch-' . str_replace( array( '.', ',' ), '-', floatval( $wp_version ) );
|
2011-05-18 20:11:48 +02:00
|
|
|
$admin_body_class .= ' version-' . str_replace( '.', '-', preg_replace( '/^([.0-9]+).*/', '$1', $wp_version ) );
|
|
|
|
$admin_body_class .= ' admin-color-' . sanitize_html_class( get_user_option( 'admin_color' ), 'fresh' );
|
2012-02-04 01:54:42 +01:00
|
|
|
$admin_body_class .= ' locale-' . sanitize_html_class( strtolower( str_replace( '_', '-', get_locale() ) ) );
|
2011-05-18 20:11:48 +02:00
|
|
|
|
2012-04-10 03:19:30 +02:00
|
|
|
if ( wp_is_mobile() )
|
|
|
|
$admin_body_class .= ' mobile';
|
|
|
|
|
2012-05-09 23:47:15 +02:00
|
|
|
$admin_body_class .= ' no-customize-support';
|
|
|
|
|
2012-04-10 03:19:30 +02:00
|
|
|
?>
|
2009-04-04 19:07:31 +02:00
|
|
|
</head>
|
2012-11-30 14:40:59 +01:00
|
|
|
<body class="wp-admin wp-core-ui no-js <?php echo apply_filters( 'admin_body_class', '' ) . " $admin_body_class"; ?>">
|
2012-04-16 16:59:09 +02:00
|
|
|
<script type="text/javascript">
|
|
|
|
document.body.className = document.body.className.replace('no-js','js');
|
|
|
|
</script>
|
2008-12-27 13:18:38 +01:00
|
|
|
|
2012-05-26 00:26:00 +02:00
|
|
|
<?php
|
2013-05-10 00:45:14 +02:00
|
|
|
// Make sure the customize body classes are correct as early as possible.
|
2013-03-30 00:25:06 +01:00
|
|
|
if ( current_user_can( 'edit_theme_options' ) )
|
2012-05-26 00:26:00 +02:00
|
|
|
wp_customize_support_script();
|
|
|
|
?>
|
2012-05-25 02:15:12 +02:00
|
|
|
|
2008-01-14 04:16:56 +01:00
|
|
|
<div id="wpwrap">
|
2012-11-20 22:14:49 +01:00
|
|
|
<a tabindex="1" href="#wpbody-content" class="screen-reader-shortcut"><?php _e('Skip to main content'); ?></a>
|
2011-05-04 22:15:05 +02:00
|
|
|
<?php require(ABSPATH . 'wp-admin/menu-header.php'); ?>
|
2008-01-14 04:16:56 +01:00
|
|
|
<div id="wpcontent">
|
2008-05-19 17:41:31 +02:00
|
|
|
|
2011-05-07 01:06:24 +02:00
|
|
|
<?php
|
|
|
|
do_action('in_admin_header');
|
|
|
|
?>
|
|
|
|
|
2008-08-29 08:36:31 +02:00
|
|
|
<div id="wpbody">
|
2010-01-15 17:58:36 +01:00
|
|
|
<?php
|
2011-01-04 09:36:06 +01:00
|
|
|
unset($title_class, $blog_name, $total_update_count, $update_title);
|
2010-01-26 19:16:53 +01:00
|
|
|
|
2011-09-26 23:03:38 +02:00
|
|
|
$current_screen->set_parentage( $parent_file );
|
|
|
|
|
2010-01-15 17:58:36 +01:00
|
|
|
?>
|
2008-10-27 02:22:24 +01:00
|
|
|
|
2012-10-16 23:26:59 +02:00
|
|
|
<div id="wpbody-content" aria-label="<?php esc_attr_e('Main content'); ?>" tabindex="0">
|
2008-08-29 08:36:31 +02:00
|
|
|
<?php
|
2011-10-01 02:24:44 +02:00
|
|
|
|
|
|
|
$current_screen->render_screen_meta();
|
2008-11-29 01:36:26 +01:00
|
|
|
|
2010-11-06 18:40:12 +01:00
|
|
|
if ( is_network_admin() )
|
2010-08-02 17:36:57 +02:00
|
|
|
do_action('network_admin_notices');
|
2010-11-06 18:40:12 +01:00
|
|
|
elseif ( is_user_admin() )
|
|
|
|
do_action('user_admin_notices');
|
2011-11-21 16:43:57 +01:00
|
|
|
else
|
2010-12-17 04:46:47 +01:00
|
|
|
do_action('admin_notices');
|
2010-08-02 17:36:57 +02:00
|
|
|
|
2011-11-21 16:43:57 +01:00
|
|
|
do_action('all_admin_notices');
|
2008-11-11 23:40:16 +01:00
|
|
|
|
2010-01-26 19:16:53 +01:00
|
|
|
if ( $parent_file == 'options-general.php' )
|
2007-07-27 23:28:01 +02:00
|
|
|
require(ABSPATH . 'wp-admin/options-head.php');
|