]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/admin-header.php
0185a9868386f9fc55b7a5a10b037b50909f7b4c
[autoinstalls/wordpress.git] / wp-admin / admin-header.php
1 <?php
2 @header('Content-Type: ' . get_option('html_type') . '; charset=' . get_option('blog_charset'));
3 if (!isset($_GET["page"])) require_once('admin.php');
4 if ( $editing ) {
5         if ( user_can_richedit() )
6                 wp_enqueue_script( 'wp_tiny_mce' );
7 }
8
9 $min_width_pages = array( 'post.php', 'post-new.php', 'page.php', 'page-new.php', 'widgets.php', 'comment.php', 'link.php' );
10 $the_current_page = preg_replace('|^.*/wp-admin/|i', '', $_SERVER['PHP_SELF']);
11 $ie6_no_scrollbar = true;
12
13 function add_minwidth($c) {
14         return $c . 'minwidth ';
15 }
16
17 if ( in_array( $the_current_page, $min_width_pages ) ) {
18                 $ie6_no_scrollbar = false;
19                 add_filter( 'admin_body_class', 'add_minwidth' );
20 }
21
22 get_admin_page_title();
23
24 ?>
25 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
26 <html xmlns="http://www.w3.org/1999/xhtml" <?php do_action('admin_xml_ns'); ?> <?php language_attributes(); ?>>
27 <head>
28 <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />
29 <title><?php bloginfo('name') ?> &rsaquo; <?php echo wp_specialchars( strip_tags( $title ) ); ?> &#8212; WordPress</title>
30 <?php
31 wp_admin_css( 'css/global' );
32 wp_admin_css();
33 wp_admin_css( 'css/colors' );
34 ?>
35 <!--[if gte IE 6]>
36 <?php wp_admin_css( 'css/ie' );
37 ?>
38 <![endif]-->
39 <script type="text/javascript">
40 //<![CDATA[
41 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();}}};
42 //]]>
43 </script>
44 <?php if ( ($parent_file != 'link-manager.php') && ($parent_file != 'options-general.php') && $ie6_no_scrollbar ) : ?>
45 <style type="text/css">* html { overflow-x: hidden; }</style>
46 <?php endif;
47 if ( isset($page_hook) )
48         do_action('admin_print_scripts-' . $page_hook);
49 else if ( isset($plugin_page) )
50         do_action('admin_print_scripts-' . $plugin_page);
51 do_action('admin_print_scripts');
52
53 if ( isset($page_hook) )
54         do_action('admin_head-' . $page_hook);
55 else if ( isset($plugin_page) )
56         do_action('admin_head-' . $plugin_page);
57 do_action('admin_head');
58 ?>
59 </head>
60 <body class="wp-admin <?php echo apply_filters( 'admin_body_class', '' ); ?>">
61 <div id="wpwrap">
62 <div id="wpcontent">
63 <div id="wphead">
64 <h1><?php bloginfo('name'); ?><span id="viewsite"><a href="<?php echo trailingslashit( get_option('home') ); ?>"><?php _e('Visit Site') ?></a></span></h1>
65 </div>
66 <div id="user_info"><p><?php printf(__('Howdy, <a href="%1$s">%2$s</a>!'), 'profile.php', $user_identity) ?> | <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?action=logout" title="<?php _e('Log Out') ?>"><?php _e('Log Out'); ?></a> | <?php _e('<a href="http://codex.wordpress.org/">Help</a>') ?> | <?php _e('<a href="http://wordpress.org/support/">Forums</a>') ?></p></div>
67
68 <?php
69 require(ABSPATH . 'wp-admin/menu-header.php');
70
71 if ( $parent_file == 'options-general.php' ) {
72         require(ABSPATH . 'wp-admin/options-head.php');
73 }
74 ?>
75 <div id="wpbody">