root/tags/2.1.2/wp-admin/admin-header.php

Revision 4478, 2.6 kB (checked in by matt, 2 years ago)

Admin functions cleanup, and change how we do titles and parents in the backend

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
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     wp_enqueue_script( array("dbx-admin-key?pagenow=$pagenow",'admin-custom-fields') );
6     if ( current_user_can('manage_categories') )
7         wp_enqueue_script( 'ajaxcat' );
8     if ( user_can_richedit() )
9         wp_enqueue_script( 'wp_tiny_mce' );
10 }
11
12 get_admin_page_title();
13
14 ?>
15 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
16 <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
17 <head>
18 <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />
19 <title><?php bloginfo('name') ?> &rsaquo; <?php echo wp_specialchars( strip_tags( $title ) ); ?> &#8212; WordPress</title>
20 <link rel="stylesheet" href="<?php echo get_option('siteurl') ?>/wp-admin/wp-admin.css?version=<?php bloginfo('version'); ?>" type="text/css" />
21 <?php if ( ('rtl' == $wp_locale->text_direction) ) : ?>
22 <link rel="stylesheet" href="<?php echo get_option('siteurl') ?>/wp-admin/rtl.css?version=<?php bloginfo('version'); ?>" type="text/css" />
23 <?php endif; ?> 
24 <script type="text/javascript">
25 //<![CDATA[
26 function addLoadEvent(func) {if ( typeof wpOnload!='function'){wpOnload=func;}else{ var oldonload=wpOnload;wpOnload=function(){oldonload();func();}}}
27 //]]>
28 </script>
29 <?php if ( ($parent_file != 'link-manager.php') && ($parent_file != 'options-general.php') ) : ?>
30 <style type="text/css">* html { overflow-x: hidden; }</style>
31 <?php endif;
32 if ( isset($page_hook) )
33     do_action('admin_print_scripts-' . $page_hook);
34 else if ( isset($plugin_page) )
35     do_action('admin_print_scripts-' . $plugin_page);
36 do_action('admin_print_scripts');
37
38 if ( isset($page_hook) )
39     do_action('admin_head-' . $page_hook);
40 else if ( isset($plugin_page) )
41     do_action('admin_head-' . $plugin_page);
42 do_action('admin_head');
43 ?>
44 </head>
45 <body>
46 <div id="wphead">
47 <h1><?php echo wptexturize(get_option(('blogname'))); ?> <span>(<a href="<?php echo get_option('home') . '/'; ?>"><?php _e('View site &raquo;') ?></a>)</span></h1>
48 </div>
49 <div id="user_info"><p><?php printf(__('Howdy, <strong>%s</strong>.'), $user_identity) ?> [<a href="<?php echo get_option('siteurl'); ?>/wp-login.php?action=logout" title="<?php _e('Log out of this account') ?>"><?php _e('Sign Out'); ?></a>, <a href="profile.php"><?php _e('My Profile'); ?></a>] </p></div>
50
51 <?php
52 require(ABSPATH . '/wp-admin/menu-header.php');
53
54 if ( $parent_file == 'options-general.php' ) {
55     require(ABSPATH . '/wp-admin/options-head.php');
56 }
57 ?>
58
Note: See TracBrowser for help on using the browser.