PageRenderTime 59ms CodeModel.GetById 32ms RepoModel.GetById 1ms app.codeStats 0ms

/tags/2.5/wp-admin/admin-header.php

#
PHP | 75 lines | 65 code | 8 blank | 2 comment | 21 complexity | 6230d5cfcc60451beefc090f29d6daf0 MD5 | raw file
Possible License(s): AGPL-1.0, LGPL-2.0, LGPL-2.1, GPL-2.0
  1. <?php
  2. @header('Content-Type: ' . get_option('html_type') . '; charset=' . get_option('blog_charset'));
  3. if (!isset($_GET["page"])) require_once('admin.php');
  4. if ( $editing ) {
  5. if ( user_can_richedit() )
  6. wp_enqueue_script( 'wp_tiny_mce' );
  7. }
  8. $min_width_pages = array( 'post.php', 'post-new.php', 'page.php', 'page-new.php', 'widgets.php', 'comment.php', 'link.php' );
  9. $the_current_page = preg_replace('|^.*/wp-admin/|i', '', $_SERVER['PHP_SELF']);
  10. $ie6_no_scrollbar = true;
  11. function add_minwidth($c) {
  12. return $c . 'minwidth ';
  13. }
  14. if ( in_array( $the_current_page, $min_width_pages ) ) {
  15. $ie6_no_scrollbar = false;
  16. add_filter( 'admin_body_class', 'add_minwidth' );
  17. }
  18. get_admin_page_title();
  19. ?>
  20. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  21. <html xmlns="http://www.w3.org/1999/xhtml" <?php do_action('admin_xml_ns'); ?> <?php language_attributes(); ?>>
  22. <head>
  23. <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />
  24. <title><?php bloginfo('name') ?> &rsaquo; <?php echo wp_specialchars( strip_tags( $title ) ); ?> &#8212; WordPress</title>
  25. <?php
  26. wp_admin_css( 'css/global' );
  27. wp_admin_css();
  28. wp_admin_css( 'css/colors' );
  29. ?>
  30. <!--[if gte IE 6]>
  31. <?php wp_admin_css( 'css/ie' );
  32. ?>
  33. <![endif]-->
  34. <script type="text/javascript">
  35. //<![CDATA[
  36. addLoadEvent = function(func) {if (typeof jQuery != "undefined") jQuery(document).ready(func); else if (typeof wpOnload!='function'){wpOnload=func;} else {var oldonload=wpOnload; wpOnload=function(){oldonload();func();}}};
  37. //]]>
  38. </script>
  39. <?php if ( ($parent_file != 'link-manager.php') && ($parent_file != 'options-general.php') && $ie6_no_scrollbar ) : ?>
  40. <style type="text/css">* html { overflow-x: hidden; }</style>
  41. <?php endif;
  42. if ( isset($page_hook) )
  43. do_action('admin_print_scripts-' . $page_hook);
  44. else if ( isset($plugin_page) )
  45. do_action('admin_print_scripts-' . $plugin_page);
  46. do_action('admin_print_scripts');
  47. if ( isset($page_hook) )
  48. do_action('admin_head-' . $page_hook);
  49. else if ( isset($plugin_page) )
  50. do_action('admin_head-' . $plugin_page);
  51. do_action('admin_head');
  52. ?>
  53. </head>
  54. <body class="wp-admin <?php echo apply_filters( 'admin_body_class', '' ); ?>">
  55. <div id="wpwrap">
  56. <div id="wpcontent">
  57. <div id="wphead">
  58. <h1><?php bloginfo('name'); ?><span id="viewsite"><a href="<?php echo trailingslashit( get_option('home') ); ?>"><?php _e('Visit Site') ?></a></span></h1>
  59. </div>
  60. <div id="user_info"><p><?php printf(__('Howdy, <a href="%1$s">%2$s</a>!'), 'profile.php', $user_identity) ?> | <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?action=logout" title="<?php _e('Log Out') ?>"><?php _e('Log Out'); ?></a> | <?php _e('<a href="http://codex.wordpress.org/">Help</a>') ?> | <?php _e('<a href="http://wordpress.org/support/">Forums</a>') ?></p></div>
  61. <?php
  62. require(ABSPATH . 'wp-admin/menu-header.php');
  63. if ( $parent_file == 'options-general.php' ) {
  64. require(ABSPATH . 'wp-admin/options-head.php');
  65. }
  66. ?>
  67. <div id="wpbody">