2006-02-17 01:29:33 +00:00
|
|
|
<?php
|
2005-02-14 20:08:29 +00:00
|
|
|
@header('Content-type: ' . get_option('html_type') . '; charset=' . get_option('blog_charset'));
|
2006-01-10 05:16:17 +00:00
|
|
|
if (!isset($_GET["page"])) require_once('admin.php');
|
|
|
|
if ( $editing ) {
|
|
|
|
$dbx_js = true;
|
2006-03-29 01:51:55 +00:00
|
|
|
$pmeta_js = true;
|
2006-04-21 05:05:34 +00:00
|
|
|
$list_js = true;
|
2006-03-29 01:51:55 +00:00
|
|
|
if ( current_user_can('manage_categories') ) {
|
2006-02-12 07:46:34 +00:00
|
|
|
$cat_js = true;
|
2006-03-29 01:51:55 +00:00
|
|
|
}
|
2006-01-10 05:16:17 +00:00
|
|
|
}
|
2006-03-29 01:51:55 +00:00
|
|
|
if ( $list_js )
|
2006-01-13 22:09:57 +00:00
|
|
|
$sack_js = true;
|
2006-01-10 05:16:17 +00:00
|
|
|
?>
|
2004-10-19 03:03:06 +00: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 08:29:51 +00:00
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
2003-05-22 12:12:53 +00:00
|
|
|
<head>
|
2006-01-10 05:16:17 +00:00
|
|
|
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_settings('blog_charset'); ?>" />
|
2004-07-21 01:59:09 +00:00
|
|
|
<title><?php bloginfo('name') ?> › <?php echo $title; ?> — WordPress</title>
|
2005-03-04 19:43:30 +00: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 08:04:39 +00:00
|
|
|
<script type="text/javascript">
|
2003-12-22 00:09:59 +00:00
|
|
|
//<![CDATA[
|
2006-01-10 05:16:17 +00:00
|
|
|
function addLoadEvent(func) {if ( typeof wpOnload!='function'){wpOnload=func;}else{ var oldonload=wpOnload;wpOnload=function(){oldonload();func();}}}
|
2003-12-22 00:09:59 +00:00
|
|
|
//]]>
|
2003-05-22 12:12:53 +00:00
|
|
|
</script>
|
2005-08-27 18:48:56 +00:00
|
|
|
<script type="text/javascript" src="../wp-includes/js/fat.js"></script>
|
2006-01-10 05:16:17 +00:00
|
|
|
<?php if ( $xfn_js ) { ?>
|
|
|
|
<script type="text/javascript" src="xfn.js"></script>
|
|
|
|
<?php } ?>
|
|
|
|
<?php if ( $sack_js ) { ?>
|
2005-08-31 02:39:17 +00:00
|
|
|
<script type="text/javascript" src="../wp-includes/js/tw-sack.js"></script>
|
2006-01-10 05:16:17 +00:00
|
|
|
<?php } ?>
|
|
|
|
<?php if ( $list_js ) { ?>
|
2006-03-29 01:51:55 +00:00
|
|
|
<script type="text/javascript" src="list-manipulation-js.php"></script>
|
|
|
|
<?php } ?>
|
|
|
|
<?php if ( $pmeta_js ) { ?>
|
|
|
|
<script type="text/javascript" src="custom-fields.js"></script>
|
|
|
|
<?php } ?>
|
|
|
|
<?php if ( 'categories.php' == $pagenow && 'edit' != $action ) { ?>
|
|
|
|
<script type="text/javascript" src="categories.js"></script>
|
2006-01-10 05:16:17 +00:00
|
|
|
<?php } ?>
|
2006-04-02 00:31:26 +00:00
|
|
|
<?php if ( $users_js ) { ?>
|
|
|
|
<script type="text/javascript" src="users.js"></script>
|
|
|
|
<?php } ?>
|
2006-04-21 04:54:01 +00:00
|
|
|
<?php if ( 'edit-comments.php' == $pagenow || ( 'edit.php' == $pagenow && 1 == $_GET['c'] ) ) { ?>
|
|
|
|
<script type="text/javascript" src="edit-comments.js"></script>
|
|
|
|
<?php } ?>
|
2006-01-10 05:16:17 +00:00
|
|
|
<?php if ( $dbx_js ) { ?>
|
2005-08-27 18:48:56 +00:00
|
|
|
<script type="text/javascript" src="../wp-includes/js/dbx.js"></script>
|
2005-12-15 21:48:12 +00:00
|
|
|
<script type="text/javascript">
|
2005-12-16 03:28:05 +00:00
|
|
|
//<![CDATA[
|
2006-01-10 05:16:17 +00:00
|
|
|
addLoadEvent( function() {
|
2006-02-21 06:11:46 +00:00
|
|
|
<?php switch ( $pagenow ) : case 'post.php' : case 'post-new.php' : ?>
|
2006-01-10 05:16:17 +00:00
|
|
|
var manager = new dbxManager('postmeta');
|
2006-02-21 06:11:46 +00:00
|
|
|
<?php break; case 'page.php' : case 'page-new.php' : ?>
|
2006-01-10 05:16:17 +00:00
|
|
|
var manager = new dbxManager('pagemeta');
|
2006-02-27 04:57:30 +00:00
|
|
|
<?php break; case 'link.php' : case 'link-add.php' : ?>
|
|
|
|
var manager = new dbxManager('linkmeta');
|
2005-12-15 21:48:12 +00:00
|
|
|
<?php break; endswitch; ?>
|
2006-01-10 05:16:17 +00:00
|
|
|
});
|
2005-12-16 03:28:05 +00:00
|
|
|
//]]>
|
2005-12-15 21:48:12 +00:00
|
|
|
</script>
|
2005-08-27 18:48:56 +00:00
|
|
|
<script type="text/javascript" src="../wp-includes/js/dbx-key.js"></script>
|
2006-01-10 05:16:17 +00:00
|
|
|
<?php } ?>
|
2006-03-30 07:50:33 +00:00
|
|
|
<?php if ( $editing && user_can_richedit() ) { tinymce_include(); } ?>
|
2006-01-10 05:16:17 +00:00
|
|
|
<?php if ( $cat_js ) { ?>
|
|
|
|
<script type="text/javascript" src="cat-js.php"></script>
|
|
|
|
<?php } ?>
|
2005-12-23 03:24:10 +00: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 01:50:56 +00:00
|
|
|
<?php do_action('admin_head'); ?>
|
2003-05-22 12:12:53 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2004-04-28 19:49:27 +00:00
|
|
|
<div id="wphead">
|
2006-02-17 01:29:33 +00: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 19:49:27 +00:00
|
|
|
</div>
|
2006-01-10 05:16:17 +00: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 08:14:41 +00:00
|
|
|
|
2003-05-22 12:12:53 +00:00
|
|
|
<?php
|
2004-10-19 03:03:06 +00:00
|
|
|
require(ABSPATH . '/wp-admin/menu-header.php');
|
|
|
|
|
2005-11-18 10:10:53 +00:00
|
|
|
if ( $parent_file == 'options-general.php' ) {
|
2004-10-19 03:03:06 +00:00
|
|
|
require(ABSPATH . '/wp-admin/options-head.php');
|
|
|
|
}
|
2004-11-25 15:45:16 +00:00
|
|
|
?>
|