2006-02-17 02:29:33 +01:00
|
|
|
<?php
|
2007-06-02 07:21:18 +02:00
|
|
|
@header('Content-Type: ' . get_option('html_type') . '; charset=' . get_option('blog_charset'));
|
2006-01-10 06:16:17 +01:00
|
|
|
if (!isset($_GET["page"])) require_once('admin.php');
|
|
|
|
if ( $editing ) {
|
2006-05-22 19:16:05 +02:00
|
|
|
if ( user_can_richedit() )
|
|
|
|
wp_enqueue_script( 'wp_tiny_mce' );
|
2006-01-10 06:16:17 +01:00
|
|
|
}
|
2006-05-22 19:16:05 +02:00
|
|
|
|
2008-03-01 00:27:02 +01:00
|
|
|
$min_width_pages = array( 'post.php', 'post-new.php', 'page.php', 'page-new.php', 'widgets.php', 'comment.php', 'link.php' );
|
2008-02-24 03:04:11 +01:00
|
|
|
$the_current_page = preg_replace('|^.*/wp-admin/|i', '', $_SERVER['PHP_SELF']);
|
|
|
|
$ie6_no_scrollbar = true;
|
|
|
|
|
|
|
|
function add_minwidth($c) {
|
|
|
|
return $c . 'minwidth ';
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( in_array( $the_current_page, $min_width_pages ) ) {
|
|
|
|
$ie6_no_scrollbar = false;
|
|
|
|
add_filter( 'admin_body_class', 'add_minwidth' );
|
|
|
|
}
|
|
|
|
|
2006-05-22 19:16:05 +02:00
|
|
|
get_admin_page_title();
|
2006-08-29 01:08:48 +02:00
|
|
|
|
2006-01-10 06:16:17 +01:00
|
|
|
?>
|
2004-10-19 05:03:06 +02:00
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
2007-04-05 01:54:47 +02:00
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml" <?php do_action('admin_xml_ns'); ?> <?php language_attributes(); ?>>
|
2003-05-22 14:12:53 +02:00
|
|
|
<head>
|
2006-08-30 23:46:31 +02:00
|
|
|
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />
|
2006-11-18 07:09:48 +01:00
|
|
|
<title><?php bloginfo('name') ?> › <?php echo wp_specialchars( strip_tags( $title ) ); ?> — WordPress</title>
|
2008-03-02 21:17:30 +01:00
|
|
|
<?php
|
2008-02-10 09:10:11 +01:00
|
|
|
wp_admin_css( 'css/global' );
|
|
|
|
wp_admin_css();
|
2008-03-11 22:06:03 +01:00
|
|
|
wp_admin_css( 'css/colors' );
|
2008-02-10 09:10:11 +01:00
|
|
|
?>
|
2008-02-15 07:46:54 +01:00
|
|
|
<!--[if gte IE 6]>
|
|
|
|
<?php wp_admin_css( 'css/ie' );
|
|
|
|
?>
|
2008-03-21 04:02:16 +01:00
|
|
|
<![endif]-->
|
2004-08-01 10:04:39 +02:00
|
|
|
<script type="text/javascript">
|
2003-12-22 01:09:59 +01:00
|
|
|
//<![CDATA[
|
2008-03-11 01:58:37 +01:00
|
|
|
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();}}};
|
|
|
|
//]]>
|
2003-05-22 14:12:53 +02:00
|
|
|
</script>
|
2008-02-24 03:04:11 +01:00
|
|
|
<?php if ( ($parent_file != 'link-manager.php') && ($parent_file != 'options-general.php') && $ie6_no_scrollbar ) : ?>
|
2005-12-23 04:24:10 +01:00
|
|
|
<style type="text/css">* html { overflow-x: hidden; }</style>
|
2006-08-29 01:08:48 +02:00
|
|
|
<?php endif;
|
|
|
|
if ( isset($page_hook) )
|
|
|
|
do_action('admin_print_scripts-' . $page_hook);
|
|
|
|
else if ( isset($plugin_page) )
|
|
|
|
do_action('admin_print_scripts-' . $plugin_page);
|
|
|
|
do_action('admin_print_scripts');
|
|
|
|
|
|
|
|
if ( isset($page_hook) )
|
|
|
|
do_action('admin_head-' . $page_hook);
|
|
|
|
else if ( isset($plugin_page) )
|
|
|
|
do_action('admin_head-' . $plugin_page);
|
|
|
|
do_action('admin_head');
|
|
|
|
?>
|
2003-05-22 14:12:53 +02:00
|
|
|
</head>
|
2007-08-17 12:33:52 +02:00
|
|
|
<body class="wp-admin <?php echo apply_filters( 'admin_body_class', '' ); ?>">
|
2008-01-14 04:16:56 +01:00
|
|
|
<div id="wpwrap">
|
|
|
|
<div id="wpcontent">
|
2004-04-28 21:49:27 +02:00
|
|
|
<div id="wphead">
|
2008-03-26 08:14:07 +01:00
|
|
|
<h1><?php bloginfo('name'); ?><span id="viewsite"><a href="<?php echo trailingslashit( get_option('home') ); ?>"><?php _e('Visit Site') ?></a></span></h1>
|
2004-04-28 21:49:27 +02:00
|
|
|
</div>
|
2008-02-24 20:37:58 +01:00
|
|
|
<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>
|
2005-08-07 10:14:41 +02:00
|
|
|
|
2003-05-22 14:12:53 +02:00
|
|
|
<?php
|
2007-07-27 23:28:01 +02:00
|
|
|
require(ABSPATH . 'wp-admin/menu-header.php');
|
2004-10-19 05:03:06 +02:00
|
|
|
|
2005-11-18 11:10:53 +01:00
|
|
|
if ( $parent_file == 'options-general.php' ) {
|
2007-07-27 23:28:01 +02:00
|
|
|
require(ABSPATH . 'wp-admin/options-head.php');
|
2004-10-19 05:03:06 +02:00
|
|
|
}
|
2004-11-25 16:45:16 +01:00
|
|
|
?>
|
2008-03-01 00:27:02 +01:00
|
|
|
<div id="wpbody">
|