2005-02-14 21:08:29 +01:00
|
|
|
<?php
|
|
|
|
@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 ) {
|
|
|
|
$dbx_js = true;
|
2006-02-19 11:52:03 +01:00
|
|
|
if ( current_user_can('manage_categories') )
|
|
|
|
$cat_js = true;
|
2006-01-10 06:16:17 +01:00
|
|
|
}
|
2006-01-13 23:09:57 +01:00
|
|
|
if ( $list_js || $cat_js )
|
|
|
|
$sack_js = true;
|
2006-01-10 06:16:17 +01:00
|
|
|
?>
|
2004-10-19 05:03:06 +02:00
|
|
|
<?php get_admin_page_title(); ?>
|
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
2003-05-23 10:29:51 +02:00
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
2003-05-22 14:12:53 +02:00
|
|
|
<head>
|
2006-01-10 06:16:17 +01:00
|
|
|
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_settings('blog_charset'); ?>" />
|
2004-07-21 03:59:09 +02:00
|
|
|
<title><?php bloginfo('name') ?> › <?php echo $title; ?> — WordPress</title>
|
2005-03-04 20:43:30 +01:00
|
|
|
<link rel="stylesheet" href="<?php echo get_settings('siteurl') ?>/wp-admin/wp-admin.css?version=<?php bloginfo('version'); ?>" type="text/css" />
|
2004-08-01 10:04:39 +02:00
|
|
|
<script type="text/javascript">
|
2003-12-22 01:09:59 +01:00
|
|
|
//<![CDATA[
|
2006-01-10 06:16:17 +01:00
|
|
|
function addLoadEvent(func) {if ( typeof wpOnload!='function'){wpOnload=func;}else{ var oldonload=wpOnload;wpOnload=function(){oldonload();func();}}}
|
2003-12-22 01:09:59 +01:00
|
|
|
//]]>
|
2003-05-22 14:12:53 +02:00
|
|
|
</script>
|
2005-08-27 20:48:56 +02:00
|
|
|
<script type="text/javascript" src="../wp-includes/js/fat.js"></script>
|
2006-01-10 06:16:17 +01:00
|
|
|
<?php if ( $xfn_js ) { ?>
|
|
|
|
<script type="text/javascript" src="xfn.js"></script>
|
|
|
|
<?php } ?>
|
|
|
|
<?php if ( $sack_js ) { ?>
|
2005-08-31 04:39:17 +02:00
|
|
|
<script type="text/javascript" src="../wp-includes/js/tw-sack.js"></script>
|
2006-01-10 06:16:17 +01:00
|
|
|
<?php } ?>
|
|
|
|
<?php if ( $list_js ) { ?>
|
2005-08-31 04:39:17 +02:00
|
|
|
<script type="text/javascript" src="list-manipulation.js"></script>
|
2006-01-10 06:16:17 +01:00
|
|
|
<?php } ?>
|
|
|
|
<?php if ( $dbx_js ) { ?>
|
2005-08-27 20:48:56 +02:00
|
|
|
<script type="text/javascript" src="../wp-includes/js/dbx.js"></script>
|
2005-12-15 22:48:12 +01:00
|
|
|
<script type="text/javascript">
|
2005-12-16 04:28:05 +01:00
|
|
|
//<![CDATA[
|
2006-01-10 06:16:17 +01:00
|
|
|
addLoadEvent( function() {
|
2005-12-15 22:48:12 +01:00
|
|
|
<?php switch ( $pagenow ) : case 'post.php' : ?>
|
2006-01-10 06:16:17 +01:00
|
|
|
var manager = new dbxManager('postmeta');
|
2005-12-15 22:48:12 +01:00
|
|
|
<?php break; case 'page-new.php' : ?>
|
2006-01-10 06:16:17 +01:00
|
|
|
var manager = new dbxManager('pagemeta');
|
2005-12-15 22:48:12 +01:00
|
|
|
<?php break; endswitch; ?>
|
2006-01-10 06:16:17 +01:00
|
|
|
});
|
2005-12-16 04:28:05 +01:00
|
|
|
//]]>
|
2005-12-15 22:48:12 +01:00
|
|
|
</script>
|
2005-08-27 20:48:56 +02:00
|
|
|
<script type="text/javascript" src="../wp-includes/js/dbx-key.js"></script>
|
2006-01-10 06:16:17 +01:00
|
|
|
<?php } ?>
|
|
|
|
<?php if ( $editing && user_can_richedit() ) { ?>
|
|
|
|
<script type="text/javascript" src="../wp-includes/js/tinymce/tiny_mce_gzip.php?ver=20051211"></script>
|
|
|
|
<?php } ?>
|
|
|
|
<?php if ( $cat_js ) { ?>
|
|
|
|
<script type="text/javascript" src="cat-js.php"></script>
|
|
|
|
<?php } ?>
|
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>
|
|
|
|
<?php endif; ?>
|
2005-08-03 03:50:56 +02:00
|
|
|
<?php do_action('admin_head'); ?>
|
2003-05-22 14:12:53 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
2004-04-28 21:49:27 +02:00
|
|
|
<div id="wphead">
|
2004-12-24 02:34:47 +01:00
|
|
|
<h1><?php echo wptexturize(get_settings(('blogname'))); ?> <span>(<a href="<?php echo get_settings('home') . '/'; ?>"><?php _e('View site') ?> »</a>)</span></h1>
|
2004-04-28 21:49:27 +02:00
|
|
|
</div>
|
2006-01-10 06:16:17 +01:00
|
|
|
<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>
|
2005-08-07 10:14:41 +02:00
|
|
|
|
2003-05-22 14:12:53 +02:00
|
|
|
<?php
|
2004-10-19 05:03:06 +02:00
|
|
|
require(ABSPATH . '/wp-admin/menu-header.php');
|
|
|
|
|
2005-11-18 11:10:53 +01:00
|
|
|
if ( $parent_file == 'options-general.php' ) {
|
2004-10-19 05:03:06 +02:00
|
|
|
require(ABSPATH . '/wp-admin/options-head.php');
|
|
|
|
}
|
2004-11-25 16:45:16 +01:00
|
|
|
?>
|