[ Index ] |
WordPress Cross Reference |
[Summary view] [Print] [Text view]
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 — WordPress' ), $title ); 33 else 34 $admin_title = sprintf( __( '%1$s ‹ %2$s — 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 * Print styles 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 * Print styles for all admin pages. 91 * 92 * @since 2.6.0 93 */ 94 do_action( 'admin_print_styles' ); 95 96 /** 97 * Print scripts 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 * Print scripts 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( 'edit_theme_options' ) ) 181 wp_customize_support_script(); 182 ?> 183 184 <div id="wpwrap"> 185 <a tabindex="1" href="#wpbody-content" class="screen-reader-shortcut"><?php _e('Skip to main content'); ?></a> 186 <?php require (ABSPATH . 'wp-admin/menu-header.php'); ?> 187 <div id="wpcontent"> 188 189 <?php 190 /** 191 * Fires at the beginning of the content section in an admin page. 192 * 193 * @since 3.0.0 194 */ 195 do_action( 'in_admin_header' ); 196 ?> 197 198 <div id="wpbody"> 199 <?php 200 unset($title_class, $blog_name, $total_update_count, $update_title); 201 202 $current_screen->set_parentage( $parent_file ); 203 204 ?> 205 206 <div id="wpbody-content" aria-label="<?php esc_attr_e('Main content'); ?>" tabindex="0"> 207 <?php 208 209 $current_screen->render_screen_meta(); 210 211 if ( is_network_admin() ) { 212 /** 213 * Print network admin screen notices. 214 * 215 * @since 3.1.0 216 */ 217 do_action( 'network_admin_notices' ); 218 } elseif ( is_user_admin() ) { 219 /** 220 * Print user admin screen notices. 221 * 222 * @since 3.1.0 223 */ 224 do_action( 'user_admin_notices' ); 225 } else { 226 /** 227 * Print admin screen notices. 228 * 229 * @since 3.1.0 230 */ 231 do_action( 'admin_notices' ); 232 } 233 234 /** 235 * Print generic admin screen notices. 236 * 237 * @since 3.1.0 238 */ 239 do_action( 'all_admin_notices' ); 240 241 if ( $parent_file == 'options-general.php' ) 242 require (ABSPATH . 'wp-admin/options-head.php');
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Tue Mar 25 01:41:18 2014 | WordPress honlapkészítés: online1.hu |