X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/41578db67d72562346e4dbb2a14889b23d522813..3d39054f012aefe514b3f5509e32f09fc4feda44:/wp-admin/menu-header.php diff --git a/wp-admin/menu-header.php b/wp-admin/menu-header.php index 1771fb0f..df7744db 100644 --- a/wp-admin/menu-header.php +++ b/wp-admin/menu-header.php @@ -10,18 +10,24 @@ * 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 string $submenu_file + */ +global $menu, $submenu, $parent_file, $submenu_file; /** - * Filter the parent file of an admin menu sub-menu item. + * Filters the parent file of an admin menu sub-menu item. * * Allows plugins to move sub-menu items around. * @@ -31,6 +37,16 @@ global $menu, $submenu, $parent_file; //For when admin-header is included from w */ $parent_file = apply_filters( 'parent_file', $parent_file ); +/** + * Filters the file of an admin menu sub-menu item. + * + * @since 4.4.0 + * + * @param string $submenu_file The submenu file. + * @param string $parent_file The submenu item's parent file. + */ +$submenu_file = apply_filters( 'submenu_file', $submenu_file, $parent_file ); + get_admin_page_parent(); /** @@ -39,9 +55,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; @@ -52,13 +74,15 @@ function _wp_menu_output( $menu, $submenu, $submenu_as_parent = true ) { $admin_is_parent = false; $class = array(); $aria_attributes = ''; + $aria_hidden = ''; + $is_separator = false; if ( $first ) { $class[] = 'wp-first-item'; $first = false; } - $submenu_items = false; + $submenu_items = array(); if ( ! empty( $submenu[$item[2]] ) ) { $class[] = 'wp-has-submenu'; $submenu_items = $submenu[$item[2]]; @@ -73,16 +97,23 @@ function _wp_menu_output( $menu, $submenu, $submenu_as_parent = true ) { } if ( ! empty( $item[4] ) ) - $class[] = $item[4]; + $class[] = esc_attr( $item[4] ); $class = $class ? ' class="' . join( ' ', $class ) . '"' : ''; $id = ! empty( $item[5] ) ? ' id="' . preg_replace( '|[^a-zA-Z0-9_:.]|', '-', $item[5] ) . '"' : ''; $img = $img_style = ''; $img_class = ' dashicons-before'; - // if the string 'none' (previously 'div') is passed instead of an URL, don't output the default menu image - // so an icon can be added to div.wp-menu-image as background with CSS. - // Dashicons and base64-encoded data:image/svg_xml URIs are also handled as special cases. + if ( false !== strpos( $class, 'wp-menu-separator' ) ) { + $is_separator = true; + } + + /* + * If the string 'none' (previously 'div') is passed instead of a URL, don't output + * the default menu image so an icon can be added to div.wp-menu-image as background + * with CSS. Dashicons and base64-encoded data:image/svg_xml URIs are also handled + * as special cases. + */ if ( ! empty( $item[6] ) ) { $img = ''; @@ -101,9 +132,14 @@ function _wp_menu_output( $menu, $submenu, $submenu_as_parent = true ) { $title = wptexturize( $item[0] ); - echo "\n\t"; + // hide separators from screen readers + if ( $is_separator ) { + $aria_hidden = ' aria-hidden="true"'; + } - if ( false !== strpos( $class, 'wp-menu-separator' ) ) { + echo "\n\t"; + + if ( $is_separator ) { echo '
'; } elseif ( $submenu_as_parent && ! empty( $submenu_items ) ) { $submenu_items = array_values( $submenu_items ); // Re-index. @@ -132,9 +168,11 @@ function _wp_menu_output( $menu, $submenu, $submenu_as_parent = true ) { if ( ! empty( $submenu_items ) ) { echo "\n\t