]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/admin-header.php
WordPress 4.1.3-scripts
[autoinstalls/wordpress.git] / wp-admin / admin-header.php
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 tag 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 section for a specific admin page.
112  *
113  * The dynamic portion of the hook, `$hook_suffix`, refers to the hook suffix
114  * for the admin page.
115  *
116  * @since 2.1.0
117  */
118 do_action( "admin_head-$hook_suffix" );
119
120 /**
121  * Fires in head section for all admin pages.
122  *
123  * @since 2.1.0
124  */
125 do_action( 'admin_head' );
126
127 if ( get_user_setting('mfold') == 'f' )
128         $admin_body_class .= ' folded';
129
130 if ( !get_user_setting('unfold') )
131         $admin_body_class .= ' auto-fold';
132
133 if ( is_admin_bar_showing() )
134         $admin_body_class .= ' admin-bar';
135
136 if ( is_rtl() )
137         $admin_body_class .= ' rtl';
138
139 if ( $current_screen->post_type )
140         $admin_body_class .= ' post-type-' . $current_screen->post_type;
141
142 if ( $current_screen->taxonomy )
143         $admin_body_class .= ' taxonomy-' . $current_screen->taxonomy;
144
145 $admin_body_class .= ' branch-' . str_replace( array( '.', ',' ), '-', floatval( $wp_version ) );
146 $admin_body_class .= ' version-' . str_replace( '.', '-', preg_replace( '/^([.0-9]+).*/', '$1', $wp_version ) );
147 $admin_body_class .= ' admin-color-' . sanitize_html_class( get_user_option( 'admin_color' ), 'fresh' );
148 $admin_body_class .= ' locale-' . sanitize_html_class( strtolower( str_replace( '_', '-', get_locale() ) ) );
149
150 if ( wp_is_mobile() )
151         $admin_body_class .= ' mobile';
152
153 if ( is_multisite() )
154         $admin_body_class .= ' multisite';
155
156 if ( is_network_admin() )
157         $admin_body_class .= ' network-admin';
158
159 $admin_body_class .= ' no-customize-support no-svg';
160
161 ?>
162 </head>
163 <?php
164 /**
165  * Filter the CSS classes for the body tag in the admin.
166  *
167  * This filter differs from the {@see 'post_class'} and {@see 'body_class'} filters
168  * in two important ways:
169  *
170  * 1. `$classes` is a space-separated string of class names instead of an array.
171  * 2. Not all core admin classes are filterable, notably: wp-admin, wp-core-ui,
172  *    and no-js cannot be removed.
173  *
174  * @since 2.3.0
175  *
176  * @param string $classes Space-separated list of CSS classes.
177  */
178 $admin_body_classes = apply_filters( 'admin_body_class', '' );
179 ?>
180 <body class="wp-admin wp-core-ui no-js <?php echo $admin_body_classes . ' ' . $admin_body_class; ?>">
181 <script type="text/javascript">
182         document.body.className = document.body.className.replace('no-js','js');
183 </script>
184
185 <?php
186 // Make sure the customize body classes are correct as early as possible.
187 if ( current_user_can( 'customize' ) ) {
188         wp_customize_support_script();
189 }
190 ?>
191
192 <div id="wpwrap">
193 <a tabindex="1" href="#wpbody-content" class="screen-reader-shortcut"><?php _e('Skip to main content'); ?></a>
194 <?php require(ABSPATH . 'wp-admin/menu-header.php'); ?>
195 <div id="wpcontent">
196
197 <?php
198 /**
199  * Fires at the beginning of the content section in an admin page.
200  *
201  * @since 3.0.0
202  */
203 do_action( 'in_admin_header' );
204 ?>
205
206 <div id="wpbody">
207 <?php
208 unset($title_class, $blog_name, $total_update_count, $update_title);
209
210 $current_screen->set_parentage( $parent_file );
211
212 ?>
213
214 <div id="wpbody-content" aria-label="<?php esc_attr_e('Main content'); ?>" tabindex="0">
215 <?php
216
217 $current_screen->render_screen_meta();
218
219 if ( is_network_admin() ) {
220         /**
221          * Print network admin screen notices.
222          *
223          * @since 3.1.0
224          */
225         do_action( 'network_admin_notices' );
226 } elseif ( is_user_admin() ) {
227         /**
228          * Print user admin screen notices.
229          *
230          * @since 3.1.0
231          */
232         do_action( 'user_admin_notices' );
233 } else {
234         /**
235          * Print admin screen notices.
236          *
237          * @since 3.1.0
238          */
239         do_action( 'admin_notices' );
240 }
241
242 /**
243  * Print generic admin screen notices.
244  *
245  * @since 3.1.0
246  */
247 do_action( 'all_admin_notices' );
248
249 if ( $parent_file == 'options-general.php' )
250         require(ABSPATH . 'wp-admin/options-head.php');