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 ) {
|
2006-05-22 13:16:05 -04:00
|
|
|
wp_enqueue_script( array("dbx-admin-key?pagenow=$pagenow",'admin-custom-fields') );
|
|
|
|
if ( current_user_can('manage_categories') )
|
|
|
|
wp_enqueue_script( 'ajaxcat' );
|
|
|
|
if ( user_can_richedit() )
|
|
|
|
wp_enqueue_script( 'wp_tiny_mce' );
|
2006-01-10 00:16:17 -05:00
|
|
|
}
|
2006-05-22 13:16:05 -04:00
|
|
|
|
|
|
|
get_admin_page_title();
|
2006-08-28 19:08:48 -04:00
|
|
|
|
2006-01-10 00:16:17 -05:00
|
|
|
?>
|
2004-10-18 23:03:06 -04:00
|
|
|
<!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-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>
|
2006-08-28 19:08:48 -04: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 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-07-06 00:27:45 -04: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 Profile'); ?></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
|
|
|
?>
|