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