]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/menu-header.php
WordPress 4.3
[autoinstalls/wordpress.git] / wp-admin / menu-header.php
index dea73320f064955102c1499deb24c065da773435..013686106fb4b930e7cf7c1e184ea6d986e43678 100644 (file)
  * The current page.
  *
  * @global string $self
- * @name $self
- * @var string
  */
 $self = preg_replace('|^.*/wp-admin/network/|i', '', $_SERVER['PHP_SELF']);
 $self = preg_replace('|^.*/wp-admin/|i', '', $self);
 $self = preg_replace('|^.*/plugins/|i', '', $self);
 $self = preg_replace('|^.*/mu-plugins/|i', '', $self);
 
-global $menu, $submenu, $parent_file; //For when admin-header is included from within a function.
+/**
+ * For when admin-header is included from within a function.
+ *
+ * @global array  $menu
+ * @global array  $submenu
+ * @global string $parent_file
+ */
+global $menu, $submenu, $parent_file;
 
 /**
  * Filter the parent file of an admin menu sub-menu item.
@@ -39,9 +44,15 @@ get_admin_page_parent();
  * @access private
  * @since 2.7.0
  *
+ * @global string $self
+ * @global string $parent_file
+ * @global string $submenu_file
+ * @global string $plugin_page
+ * @global string $typenow
+ *
  * @param array $menu
  * @param array $submenu
- * @param bool $submenu_as_parent
+ * @param bool  $submenu_as_parent
  */
 function _wp_menu_output( $menu, $submenu, $submenu_as_parent = true ) {
        global $self, $parent_file, $submenu_file, $plugin_page, $typenow;
@@ -60,7 +71,7 @@ function _wp_menu_output( $menu, $submenu, $submenu_as_parent = true ) {
                        $first = false;
                }
 
-               $submenu_items = false;
+               $submenu_items = array();
                if ( ! empty( $submenu[$item[2]] ) ) {
                        $class[] = 'wp-has-submenu';
                        $submenu_items = $submenu[$item[2]];
@@ -146,7 +157,7 @@ function _wp_menu_output( $menu, $submenu, $submenu_as_parent = true ) {
 
                if ( ! empty( $submenu_items ) ) {
                        echo "\n\t<ul class='wp-submenu wp-submenu-wrap'>";
-                       echo "<li class='wp-submenu-head'>{$item[0]}</li>";
+                       echo "<li class='wp-submenu-head' aria-hidden='true'>{$item[0]}</li>";
 
                        $first = true;
 
@@ -174,7 +185,7 @@ function _wp_menu_output( $menu, $submenu, $submenu_as_parent = true ) {
                                                $class[] = 'current';
                                // If plugin_page is set the parent must either match the current page or not physically exist.
                                // This allows plugin pages with the same hook to exist under different parents.
-                               } else if (
+                               } elseif (
                                        ( ! isset( $plugin_page ) && $self == $sub_item[2] ) ||
                                        ( isset( $plugin_page ) && $plugin_page == $sub_item[2] && ( $item[2] == $self_type || $item[2] == $self || file_exists($menu_file) === false ) )
                                ) {
@@ -219,9 +230,12 @@ function _wp_menu_output( $menu, $submenu, $submenu_as_parent = true ) {
 
 ?>
 
+<div id="adminmenumain" role="navigation" aria-label="<?php esc_attr_e( 'Main menu' ); ?>">
+<a href="#wpbody-content" class="screen-reader-shortcut"><?php _e( 'Skip to main content' ); ?></a>
+<a href="#wp-toolbar" class="screen-reader-shortcut"><?php _e( 'Skip to toolbar' ); ?></a>
 <div id="adminmenuback"></div>
 <div id="adminmenuwrap">
-<ul id="adminmenu" role="navigation">
+<ul id="adminmenu">
 
 <?php
 
@@ -236,3 +250,4 @@ do_action( 'adminmenu' );
 ?>
 </ul>
 </div>
+</div>