diff options
author | donncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36> | 2006-06-22 18:31:50 +0000 |
---|---|---|
committer | donncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36> | 2006-06-22 18:31:50 +0000 |
commit | d48e85e0ac5e675ca33fac173f30c75403d1033f (patch) | |
tree | 1164430fa3b83a4d9283961b09c1576f2885e6b2 /wp-admin/admin-header.php | |
parent | 086dcde66603301531efc6d8087bd06d0546f148 (diff) | |
download | wordpress-mu-d48e85e0ac5e675ca33fac173f30c75403d1033f.tar.gz wordpress-mu-d48e85e0ac5e675ca33fac173f30c75403d1033f.tar.xz wordpress-mu-d48e85e0ac5e675ca33fac173f30c75403d1033f.zip |
Moved everything in wp-inst down a directory.
Uses's Ryan Boren's htaccess rules and mods
If you're upgrading, try this on a test server first!
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@591 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-admin/admin-header.php')
-rw-r--r-- | wp-admin/admin-header.php | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/wp-admin/admin-header.php b/wp-admin/admin-header.php new file mode 100644 index 0000000..ee0c286 --- /dev/null +++ b/wp-admin/admin-header.php @@ -0,0 +1,41 @@ +<?php +@header('Content-type: ' . get_option('html_type') . '; charset=' . get_option('blog_charset')); +if (!isset($_GET["page"])) require_once('admin.php'); +if ( $editing ) { + wp_enqueue_script( array("dbx-admin-key?pagenow=$pagenow",'admin-custom-fields') ); + if ( current_user_can('manage_categories') ) + wp_enqueue_script( 'ajaxcat' ); + if ( user_can_richedit() ) + wp_enqueue_script( 'wp_tiny_mce' ); +} + +get_admin_page_title(); +?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_settings('blog_charset'); ?>" /> +<title><?php bloginfo('name') ?> › <?php echo $title; ?> — WordPress</title> +<link rel="stylesheet" href="<?php echo get_settings('siteurl') ?>/wp-admin/wp-admin.css?version=<?php bloginfo('version'); ?>" type="text/css" /> +<script type="text/javascript"> +//<![CDATA[ +function addLoadEvent(func) {if ( typeof wpOnload!='function'){wpOnload=func;}else{ var oldonload=wpOnload;wpOnload=function(){oldonload();func();}}} +//]]> +</script> +<?php if ( ($parent_file != 'link-manager.php') && ($parent_file != 'options-general.php') ) : ?> +<style type="text/css">* html { overflow-x: hidden; }</style> +<?php endif; wp_print_scripts(); do_action('admin_head'); ?> +</head> +<body> +<div id="wphead"> +<h1><?php echo wptexturize(get_settings(('blogname'))); ?> <span>(<a href="<?php echo get_settings('home') . '/'; ?>"><?php _e('View site »') ?></a>)</span></h1> +</div> +<div id="user_info"><p><?php printf(__('Howdy, <strong>%s</strong>.'), $user_identity) ?> [<a href="<?php echo get_settings('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 Account'); ?></a>] </p></div> + +<?php +require(ABSPATH . '/wp-admin/menu-header.php'); + +if ( $parent_file == 'options-general.php' ) { + require(ABSPATH . '/wp-admin/options-head.php'); +} +?> |