~canonical-sysadmins/wordpress/4.2.2

« back to all changes in this revision

Viewing changes to wp-admin/admin-header.php

  • Committer: Jacek Nykis
  • Date: 2015-01-05 16:17:05 UTC
  • Revision ID: jacek.nykis@canonical.com-20150105161705-w544l1h5mcg7u4w9
Initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
/**
 
3
 * WordPress Administration Template Header
 
4
 *
 
5
 * @package WordPress
 
6
 * @subpackage Administration
 
7
 */
 
8
 
 
9
@header('Content-Type: ' . get_option('html_type') . '; charset=' . get_option('blog_charset'));
 
10
if ( ! defined( 'WP_ADMIN' ) )
 
11
        require_once( dirname( __FILE__ ) . '/admin.php' );
 
12
 
 
13
// In case admin-header.php is included in a function.
 
14
global $title, $hook_suffix, $current_screen, $wp_locale, $pagenow, $wp_version,
 
15
        $update_title, $total_update_count, $parent_file;
 
16
 
 
17
// Catch plugins that include admin-header.php before admin.php completes.
 
18
if ( empty( $current_screen ) )
 
19
        set_current_screen();
 
20
 
 
21
get_admin_page_title();
 
22
$title = esc_html( strip_tags( $title ) );
 
23
 
 
24
if ( is_network_admin() )
 
25
        $admin_title = sprintf( __( 'Network Admin: %s' ), esc_html( get_current_site()->site_name ) );
 
26
elseif ( is_user_admin() )
 
27
        $admin_title = sprintf( __( 'Global Dashboard: %s' ), esc_html( get_current_site()->site_name ) );
 
28
else
 
29
        $admin_title = get_bloginfo( 'name' );
 
30
 
 
31
if ( $admin_title == $title )
 
32
        $admin_title = sprintf( __( '%1$s &#8212; WordPress' ), $title );
 
33
else
 
34
        $admin_title = sprintf( __( '%1$s &lsaquo; %2$s &#8212; WordPress' ), $title, $admin_title );
 
35
 
 
36
/**
 
37
 * Filter the <title> content for an admin page.
 
38
 *
 
39
 * @since 3.1.0
 
40
 *
 
41
 * @param string $admin_title The page title, with extra context added.
 
42
 * @param string $title       The original page title.
 
43
 */
 
44
$admin_title = apply_filters( 'admin_title', $admin_title, $title );
 
45
 
 
46
wp_user_settings();
 
47
 
 
48
_wp_admin_html_begin();
 
49
?>
 
50
<title><?php echo $admin_title; ?></title>
 
51
<?php
 
52
 
 
53
wp_enqueue_style( 'colors' );
 
54
wp_enqueue_style( 'ie' );
 
55
wp_enqueue_script('utils');
 
56
wp_enqueue_script( 'svg-painter' );
 
57
 
 
58
$admin_body_class = preg_replace('/[^a-z0-9_-]+/i', '-', $hook_suffix);
 
59
?>
 
60
<script type="text/javascript">
 
61
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();}}};
 
62
var ajaxurl = '<?php echo admin_url( 'admin-ajax.php', 'relative' ); ?>',
 
63
        pagenow = '<?php echo $current_screen->id; ?>',
 
64
        typenow = '<?php echo $current_screen->post_type; ?>',
 
65
        adminpage = '<?php echo $admin_body_class; ?>',
 
66
        thousandsSeparator = '<?php echo addslashes( $wp_locale->number_format['thousands_sep'] ); ?>',
 
67
        decimalPoint = '<?php echo addslashes( $wp_locale->number_format['decimal_point'] ); ?>',
 
68
        isRtl = <?php echo (int) is_rtl(); ?>;
 
69
</script>
 
70
<meta name="viewport" content="width=device-width,initial-scale=1.0">
 
71
<?php
 
72
 
 
73
/**
 
74
 * Enqueue scripts for all admin pages.
 
75
 *
 
76
 * @since 2.8.0
 
77
 *
 
78
 * @param string $hook_suffix The current admin page.
 
79
 */
 
80
do_action( 'admin_enqueue_scripts', $hook_suffix );
 
81
 
 
82
/**
 
83
 * Fires when styles are printed for a specific admin page based on $hook_suffix.
 
84
 *
 
85
 * @since 2.6.0
 
86
 */
 
87
do_action( "admin_print_styles-$hook_suffix" );
 
88
 
 
89
/**
 
90
 * Fires when styles are printed for all admin pages.
 
91
 *
 
92
 * @since 2.6.0
 
93
 */
 
94
do_action( 'admin_print_styles' );
 
95
 
 
96
/**
 
97
 * Fires when scripts are printed for a specific admin page based on $hook_suffix.
 
98
 *
 
99
 * @since 2.1.0
 
100
 */
 
101
do_action( "admin_print_scripts-$hook_suffix" );
 
102
 
 
103
/**
 
104
 * Fires when scripts are printed for all admin pages.
 
105
 *
 
106
 * @since 2.1.0
 
107
 */
 
108
do_action( 'admin_print_scripts' );
 
109
 
 
110
/**
 
111
 * Fires in <head> for a specific admin page based on $hook_suffix.
 
112
 *
 
113
 * @since 2.1.0
 
114
 */
 
115
do_action( "admin_head-$hook_suffix" );
 
116
 
 
117
/**
 
118
 * Fires in <head> for all admin pages.
 
119
 *
 
120
 * @since 2.1.0
 
121
 */
 
122
do_action( 'admin_head' );
 
123
 
 
124
if ( get_user_setting('mfold') == 'f' )
 
125
        $admin_body_class .= ' folded';
 
126
 
 
127
if ( !get_user_setting('unfold') )
 
128
        $admin_body_class .= ' auto-fold';
 
129
 
 
130
if ( is_admin_bar_showing() )
 
131
        $admin_body_class .= ' admin-bar';
 
132
 
 
133
if ( is_rtl() )
 
134
        $admin_body_class .= ' rtl';
 
135
 
 
136
if ( $current_screen->post_type )
 
137
        $admin_body_class .= ' post-type-' . $current_screen->post_type;
 
138
 
 
139
if ( $current_screen->taxonomy )
 
140
        $admin_body_class .= ' taxonomy-' . $current_screen->taxonomy;
 
141
 
 
142
$admin_body_class .= ' branch-' . str_replace( array( '.', ',' ), '-', floatval( $wp_version ) );
 
143
$admin_body_class .= ' version-' . str_replace( '.', '-', preg_replace( '/^([.0-9]+).*/', '$1', $wp_version ) );
 
144
$admin_body_class .= ' admin-color-' . sanitize_html_class( get_user_option( 'admin_color' ), 'fresh' );
 
145
$admin_body_class .= ' locale-' . sanitize_html_class( strtolower( str_replace( '_', '-', get_locale() ) ) );
 
146
 
 
147
if ( wp_is_mobile() )
 
148
        $admin_body_class .= ' mobile';
 
149
 
 
150
if ( is_multisite() )
 
151
        $admin_body_class .= ' multisite';
 
152
 
 
153
if ( is_network_admin() )
 
154
        $admin_body_class .= ' network-admin';
 
155
 
 
156
$admin_body_class .= ' no-customize-support no-svg';
 
157
 
 
158
?>
 
159
</head>
 
160
<?php
 
161
/**
 
162
 * Filter the admin <body> CSS classes.
 
163
 *
 
164
 * This filter differs from the post_class or body_class filters in two important ways:
 
165
 * 1. $classes is a space-separated string of class names instead of an array.
 
166
 * 2. Not all core admin classes are filterable, notably: wp-admin, wp-core-ui, and no-js cannot be removed.
 
167
 *
 
168
 * @since 2.3.0
 
169
 *
 
170
 * @param string $classes Space-separated string of CSS classes.
 
171
 */
 
172
?>
 
173
<body class="wp-admin wp-core-ui no-js <?php echo apply_filters( 'admin_body_class', '' ) . " $admin_body_class"; ?>">
 
174
<script type="text/javascript">
 
175
        document.body.className = document.body.className.replace('no-js','js');
 
176
</script>
 
177
 
 
178
<?php
 
179
// Make sure the customize body classes are correct as early as possible.
 
180
if ( current_user_can( 'customize' ) ) {
 
181
        wp_customize_support_script();
 
182
}
 
183
?>
 
184
 
 
185
<div id="wpwrap">
 
186
<a tabindex="1" href="#wpbody-content" class="screen-reader-shortcut"><?php _e('Skip to main content'); ?></a>
 
187
<?php require(ABSPATH . 'wp-admin/menu-header.php'); ?>
 
188
<div id="wpcontent">
 
189
 
 
190
<?php
 
191
/**
 
192
 * Fires at the beginning of the content section in an admin page.
 
193
 *
 
194
 * @since 3.0.0
 
195
 */
 
196
do_action( 'in_admin_header' );
 
197
?>
 
198
 
 
199
<div id="wpbody">
 
200
<?php
 
201
unset($title_class, $blog_name, $total_update_count, $update_title);
 
202
 
 
203
$current_screen->set_parentage( $parent_file );
 
204
 
 
205
?>
 
206
 
 
207
<div id="wpbody-content" aria-label="<?php esc_attr_e('Main content'); ?>" tabindex="0">
 
208
<?php
 
209
 
 
210
$current_screen->render_screen_meta();
 
211
 
 
212
if ( is_network_admin() ) {
 
213
        /**
 
214
         * Print network admin screen notices.
 
215
         *
 
216
         * @since 3.1.0
 
217
         */
 
218
        do_action( 'network_admin_notices' );
 
219
} elseif ( is_user_admin() ) {
 
220
        /**
 
221
         * Print user admin screen notices.
 
222
         *
 
223
         * @since 3.1.0
 
224
         */
 
225
        do_action( 'user_admin_notices' );
 
226
} else {
 
227
        /**
 
228
         * Print admin screen notices.
 
229
         *
 
230
         * @since 3.1.0
 
231
         */
 
232
        do_action( 'admin_notices' );
 
233
}
 
234
 
 
235
/**
 
236
 * Print generic admin screen notices.
 
237
 *
 
238
 * @since 3.1.0
 
239
 */
 
240
do_action( 'all_admin_notices' );
 
241
 
 
242
if ( $parent_file == 'options-general.php' )
 
243
        require(ABSPATH . 'wp-admin/options-head.php');