mirror of
git://develop.git.wordpress.org/
synced 2025-02-06 23:50:43 +01:00
Menus: Account for legacy calls to nav_menu_css_class
filter.
Modify `wp_nav_menu_remove_menu_item_has_children_class()` to account for changes to the `nav_menu_css_class` filter since it's introduction. The `$args` and `$depth` parameters were added after the filter's introduction so this protects against fatal errors in custom walkers applying the filter in a legacy format. Without the `$args` or `$depth` parameters, `wp_nav_menu_remove_menu_item_has_children_class()` no longer attempts to remove the `menu-item-has-children` from the lowest level menu items as these are required to determine the current branch the walker is walking. Follow up to [54999]. Props dd32, azaozz, peterwilsoncc. See #56926, #28620. git-svn-id: https://develop.svn.wordpress.org/trunk@55005 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
7c590f2505
commit
e27c5a38e3
@ -638,15 +638,38 @@ function _nav_menu_item_id_use_once( $id, $item ) {
|
||||
/**
|
||||
* Remove the `menu-item-has-children` class from bottom level menu items.
|
||||
*
|
||||
* This runs on the {@see 'nav_menu_css_class'} filter. The $args and $depth
|
||||
* parameters were added after the filter was originally introduced in
|
||||
* WordPress 3.0.0 so this needs to allow for cases in which the filter is
|
||||
* called without them.
|
||||
*
|
||||
* @see https://core.trac.wordpress.org/ticket/56926.
|
||||
*
|
||||
* @since 6.1.2
|
||||
*
|
||||
* @param string[] $classes Array of the CSS classes that are applied to the menu item's `<li>` element.
|
||||
* @param WP_Post $menu_item The current menu item object.
|
||||
* @param stdClass $args An object of wp_nav_menu() arguments.
|
||||
* @param int $depth Depth of menu item.
|
||||
* @param string[] $classes Array of the CSS classes that are applied to the menu item's `<li>` element.
|
||||
* @param WP_Post $menu_item The current menu item object.
|
||||
* @param stdClass|false $args An object of wp_nav_menu() arguments. Default false ($args unspecified when filter is called).
|
||||
* @param int|false $depth Depth of menu item. Default false ($depth unspecified when filter is called).
|
||||
* @return string[] Modified nav menu classes.
|
||||
*/
|
||||
function wp_nav_menu_remove_menu_item_has_children_class( $classes, $menu_item, $args, $depth ) {
|
||||
function wp_nav_menu_remove_menu_item_has_children_class( $classes, $menu_item, $args = false, $depth = false ) {
|
||||
/*
|
||||
* Account for the filter being called without the $args or $depth parameters.
|
||||
*
|
||||
* This occurs when a theme uses a custom walker calling the `nav_menu_css_class`
|
||||
* filter using the legacy formats prior to the introduction of the $args and
|
||||
* $depth parameters.
|
||||
*
|
||||
* As both of these parameters are required for this function to determine
|
||||
* both the current and maximum depth of the menu tree, the function does not
|
||||
* attempt to remove the `menu-item-has-children` class if these parameters
|
||||
* are not set.
|
||||
*/
|
||||
if ( false === $depth || false === $args ) {
|
||||
return $classes;
|
||||
}
|
||||
|
||||
// Max-depth is 1-based.
|
||||
$max_depth = isset( $args->depth ) ? (int) $args->depth : 0;
|
||||
// Depth is 0-based so needs to be increased by one.
|
||||
|
@ -0,0 +1,100 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @group menu
|
||||
*/
|
||||
class Tests_Menu_WpNavMenuRemoveMenuItemHasChildrenClass extends WP_UnitTestCase {
|
||||
|
||||
/**
|
||||
* Ensure calling filter in legacy ways does not throw an error.
|
||||
*
|
||||
* @ticket 56926
|
||||
*/
|
||||
public function test_legacy_filter_should_not_throw_an_error() {
|
||||
$classes = array( 'menu-item-has-children', 'menu-item', 'menu-item-123' );
|
||||
|
||||
$menu_item = (object) array(
|
||||
'classes' => $classes,
|
||||
);
|
||||
|
||||
$args = (object) array(
|
||||
'depth' => 2,
|
||||
);
|
||||
|
||||
$depth = 2;
|
||||
|
||||
$class_names = implode( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $menu_item ) );
|
||||
$this->assertStringContainsString( 'menu-item-has-children', $class_names, 'Class name should be retained when filter is called with two arguments.' );
|
||||
$class_names = implode( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $menu_item, $args ) );
|
||||
$this->assertStringContainsString( 'menu-item-has-children', $class_names, 'Class name should be retained when filter is called with three arguments.' );
|
||||
$class_names = implode( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $menu_item, $args, $depth ) );
|
||||
$this->assertStringNotContainsString( 'menu-item-has-children', $class_names, 'Class name should not be retained when filter is called with four arguments.' );
|
||||
}
|
||||
|
||||
/**
|
||||
* Ensure menu-item-has-children class is removed or retained as expected.
|
||||
*
|
||||
* @dataProvider data_menu_item_has_children_class_should_be_removed_or_retained_as_expected
|
||||
* @ticket 56926
|
||||
*/
|
||||
public function test_menu_item_has_children_class_should_be_removed_or_retained_as_expected( $args, $depth, $should_be_retained ) {
|
||||
$classes = array( 'menu-item-has-children', 'menu-item', 'menu-item-123' );
|
||||
|
||||
$menu_item = (object) array(
|
||||
'classes' => $classes,
|
||||
);
|
||||
|
||||
$class_names = wp_nav_menu_remove_menu_item_has_children_class( $classes, $menu_item, $args, $depth );
|
||||
if ( $should_be_retained ) {
|
||||
$this->assertContains( 'menu-item-has-children', $class_names, 'Class name should be retained.' );
|
||||
return;
|
||||
}
|
||||
|
||||
$this->assertNotContains( 'menu-item-has-children', $class_names, 'Class name should not be retained.' );
|
||||
}
|
||||
|
||||
/**
|
||||
* Data provider.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function data_menu_item_has_children_class_should_be_removed_or_retained_as_expected() {
|
||||
return array(
|
||||
'Depth not set' => array(
|
||||
'args' => (object) array( 'depth' => 1 ),
|
||||
'depth' => false,
|
||||
'should_be_retained' => true,
|
||||
),
|
||||
'Neither depth nor args set' => array(
|
||||
'args' => false,
|
||||
'depth' => false,
|
||||
'should_be_retained' => true,
|
||||
),
|
||||
'Max depth is set to minus 1' => array(
|
||||
'args' => (object) array( 'depth' => -1 ),
|
||||
'depth' => 1,
|
||||
'should_be_retained' => false,
|
||||
),
|
||||
'Max depth is set to zero' => array(
|
||||
'args' => (object) array( 'depth' => 0 ),
|
||||
'depth' => 1,
|
||||
'should_be_retained' => true,
|
||||
),
|
||||
'Item depth exceeds max depth' => array(
|
||||
'args' => (object) array( 'depth' => 2 ),
|
||||
'depth' => 3,
|
||||
'should_be_retained' => false,
|
||||
),
|
||||
'Item depth is lower than max depth' => array(
|
||||
'args' => (object) array( 'depth' => 5 ),
|
||||
'depth' => 3,
|
||||
'should_be_retained' => true,
|
||||
),
|
||||
'Item depth is one lower than max depth' => array(
|
||||
'args' => (object) array( 'depth' => 2 ),
|
||||
'depth' => 1,
|
||||
'should_be_retained' => false, // Depth is zero-based, max depth is not.
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user