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
|
|
|
|
|
|
|
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>
|
2007-09-04 01:32:58 +02:00
|
|
|
<?php wp_admin_css(); ?>
|
2004-08-01 10:04:39 +02:00
|
|
|
<script type="text/javascript">
|
2003-12-22 01:09:59 +01:00
|
|
|
//<![CDATA[
|
2007-12-24 08:08:37 +01:00
|
|
|
addLoadEvent=(function(){var e=[],t,s,n,i,o,d=document,w=window,r='readyState',c='onreadystatechange',x=function(){n=1;clearInterval(t);while(i=e.shift())i();if(s)s[c]=''};return function(f){if(n)return f();if(!e[0]){d.addEventListener&&d.addEventListener("DOMContentLoaded",x,false);/*@cc_on@*//*@if(@_win32)d.write("<script id=__ie_onload defer src=//0><\/scr"+"ipt>");s=d.getElementById("__ie_onload");s[c]=function(){s[r]=="complete"&&x()};/*@end@*/if(/WebKit/i.test(navigator.userAgent))t=setInterval(function(){/loaded|complete/.test(d[r])&&x()},10);o=w.onload;w.onload=function(){x();o&&o()}}e.push(f)}})();//]]>
|
2003-05-22 14:12:53 +02:00
|
|
|
</script>
|
2005-12-23 04:24:10 +01:00
|
|
|
<?php if ( ($parent_file != 'link-manager.php') && ($parent_file != 'options-general.php') ) : ?>
|
|
|
|
<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', '' ); ?>">
|
2004-04-28 21:49:27 +02:00
|
|
|
<div id="wphead">
|
2007-12-22 10:46:13 +01:00
|
|
|
<h1><?php bloginfo('name'); ?> <span id="viewsite"><a href="<?php echo get_option('home') . '/'; ?>"><?php _e('Visit Site') ?></a></span></h1>
|
2004-04-28 21:49:27 +02:00
|
|
|
</div>
|
2008-01-04 10:37:40 +01:00
|
|
|
<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('Log Out'); ?></a>, <a href="profile.php"><?php _e('My Profile'); ?></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
|
|
|
?>
|