2016-06-06 17:18:31 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Nav Menu API: Walker_Nav_Menu class
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Nav_Menus
|
|
|
|
* @since 4.6.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Core class used to implement an HTML list of nav menu items.
|
|
|
|
*
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @see Walker
|
|
|
|
*/
|
|
|
|
class Walker_Nav_Menu extends Walker {
|
|
|
|
/**
|
|
|
|
* What the class handles.
|
|
|
|
*
|
|
|
|
* @since 3.0.0
|
|
|
|
* @var string
|
|
|
|
*
|
|
|
|
* @see Walker::$tree_type
|
|
|
|
*/
|
|
|
|
public $tree_type = array( 'post_type', 'taxonomy', 'custom' );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Database fields to use.
|
|
|
|
*
|
|
|
|
* @since 3.0.0
|
|
|
|
* @todo Decouple this.
|
2022-01-30 20:25:03 +01:00
|
|
|
* @var string[]
|
2016-06-06 17:18:31 +02:00
|
|
|
*
|
|
|
|
* @see Walker::$db_fields
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public $db_fields = array(
|
|
|
|
'parent' => 'menu_item_parent',
|
|
|
|
'id' => 'db_id',
|
|
|
|
);
|
2016-06-06 17:18:31 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Starts the list before the elements are added.
|
|
|
|
*
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @see Walker::start_lvl()
|
|
|
|
*
|
2017-10-03 00:14:46 +02:00
|
|
|
* @param string $output Used to append additional content (passed by reference).
|
2016-09-07 18:15:30 +02:00
|
|
|
* @param int $depth Depth of menu item. Used for padding.
|
|
|
|
* @param stdClass $args An object of wp_nav_menu() arguments.
|
2016-06-06 17:18:31 +02:00
|
|
|
*/
|
2019-06-14 13:26:52 +02:00
|
|
|
public function start_lvl( &$output, $depth = 0, $args = null ) {
|
2016-09-08 09:06:30 +02:00
|
|
|
if ( isset( $args->item_spacing ) && 'discard' === $args->item_spacing ) {
|
2016-09-06 11:06:31 +02:00
|
|
|
$t = '';
|
|
|
|
$n = '';
|
2016-09-08 09:06:30 +02:00
|
|
|
} else {
|
|
|
|
$t = "\t";
|
|
|
|
$n = "\n";
|
2016-09-06 11:06:31 +02:00
|
|
|
}
|
|
|
|
$indent = str_repeat( $t, $depth );
|
2017-04-23 09:16:43 +02:00
|
|
|
|
2017-05-14 05:38:48 +02:00
|
|
|
// Default class.
|
|
|
|
$classes = array( 'sub-menu' );
|
|
|
|
|
2017-04-23 09:16:43 +02:00
|
|
|
/**
|
|
|
|
* Filters the CSS class(es) applied to a menu list element.
|
|
|
|
*
|
|
|
|
* @since 4.8.0
|
|
|
|
*
|
2018-03-25 20:10:32 +02:00
|
|
|
* @param string[] $classes Array of the CSS classes that are applied to the menu `<ul>` element.
|
2017-04-23 09:16:43 +02:00
|
|
|
* @param stdClass $args An object of `wp_nav_menu()` arguments.
|
|
|
|
* @param int $depth Depth of menu item. Used for padding.
|
|
|
|
*/
|
2020-10-18 19:27:06 +02:00
|
|
|
$class_names = implode( ' ', apply_filters( 'nav_menu_submenu_css_class', $classes, $args, $depth ) );
|
2017-05-14 05:38:48 +02:00
|
|
|
$class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';
|
2017-04-23 09:16:43 +02:00
|
|
|
|
2017-10-20 12:40:46 +02:00
|
|
|
$output .= "{$n}{$indent}<ul$class_names>{$n}";
|
2016-06-06 17:18:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Ends the list of after the elements are added.
|
|
|
|
*
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @see Walker::end_lvl()
|
|
|
|
*
|
2017-10-03 00:14:46 +02:00
|
|
|
* @param string $output Used to append additional content (passed by reference).
|
2016-09-07 18:15:30 +02:00
|
|
|
* @param int $depth Depth of menu item. Used for padding.
|
|
|
|
* @param stdClass $args An object of wp_nav_menu() arguments.
|
2016-06-06 17:18:31 +02:00
|
|
|
*/
|
2019-06-14 13:26:52 +02:00
|
|
|
public function end_lvl( &$output, $depth = 0, $args = null ) {
|
2016-09-08 09:06:30 +02:00
|
|
|
if ( isset( $args->item_spacing ) && 'discard' === $args->item_spacing ) {
|
2016-09-06 11:06:31 +02:00
|
|
|
$t = '';
|
|
|
|
$n = '';
|
2016-09-08 09:06:30 +02:00
|
|
|
} else {
|
|
|
|
$t = "\t";
|
|
|
|
$n = "\n";
|
2016-09-06 11:06:31 +02:00
|
|
|
}
|
2017-12-01 00:11:00 +01:00
|
|
|
$indent = str_repeat( $t, $depth );
|
2016-09-06 11:06:31 +02:00
|
|
|
$output .= "$indent</ul>{$n}";
|
2016-06-06 17:18:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Starts the element output.
|
|
|
|
*
|
|
|
|
* @since 3.0.0
|
|
|
|
* @since 4.4.0 The {@see 'nav_menu_item_args'} filter was added.
|
Code Modernization: Fix last parameter name mismatches for parent/child classes in `Walker::start_el()`.
The parent class uses `$current_object_id` while most of the child classes use `$id`. As the parent class' is more descriptive, renaming the last parameter in each of child class.
Why? PHP 8 introduces the ability to pass named arguments to function/method calls. This means the child and parent method signatures (i.e. parameter names) need to match.
Changes for readability:
- `@since` clearly specifies the original parameter name and its new name as well as why the change happened.
- In methods longer than a single line, the generic parameter is reassigned to the original parameter restoring it for context for use within the method. An inline comment is added to explain why this reassignment is made.
- In cases where the original parameter name was too generic or misleading, renamed (when reassigning) to a more descriptive name for use within the method.
Follow-up to [7737], [8900], [8970], [14248], [15077], [16100], [25642], [25644], [37051], [37054], [37056], [46271], [47189], [51739].
Props jrf, hellofromTonya, sergeybiryukov, azaozz, desrosj, johnbillion.
See #51553.
Built from https://develop.svn.wordpress.org/trunk@51779
git-svn-id: http://core.svn.wordpress.org/trunk@51386 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-09-09 14:39:59 +02:00
|
|
|
* @since 5.9.0 Renamed `$item` to `$data_object` and `$id` to `$current_object_id`
|
|
|
|
* to match parent class for PHP 8 named parameter support.
|
2016-06-06 17:18:31 +02:00
|
|
|
*
|
|
|
|
* @see Walker::start_el()
|
|
|
|
*
|
Code Modernization: Fix last parameter name mismatches for parent/child classes in `Walker::start_el()`.
The parent class uses `$current_object_id` while most of the child classes use `$id`. As the parent class' is more descriptive, renaming the last parameter in each of child class.
Why? PHP 8 introduces the ability to pass named arguments to function/method calls. This means the child and parent method signatures (i.e. parameter names) need to match.
Changes for readability:
- `@since` clearly specifies the original parameter name and its new name as well as why the change happened.
- In methods longer than a single line, the generic parameter is reassigned to the original parameter restoring it for context for use within the method. An inline comment is added to explain why this reassignment is made.
- In cases where the original parameter name was too generic or misleading, renamed (when reassigning) to a more descriptive name for use within the method.
Follow-up to [7737], [8900], [8970], [14248], [15077], [16100], [25642], [25644], [37051], [37054], [37056], [46271], [47189], [51739].
Props jrf, hellofromTonya, sergeybiryukov, azaozz, desrosj, johnbillion.
See #51553.
Built from https://develop.svn.wordpress.org/trunk@51779
git-svn-id: http://core.svn.wordpress.org/trunk@51386 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-09-09 14:39:59 +02:00
|
|
|
* @param string $output Used to append additional content (passed by reference).
|
|
|
|
* @param WP_Post $data_object Menu item data object.
|
|
|
|
* @param int $depth Depth of menu item. Used for padding.
|
|
|
|
* @param stdClass $args An object of wp_nav_menu() arguments.
|
|
|
|
* @param int $current_object_id Optional. ID of the current menu item. Default 0.
|
2016-06-06 17:18:31 +02:00
|
|
|
*/
|
Code Modernization: Fix last parameter name mismatches for parent/child classes in `Walker::start_el()`.
The parent class uses `$current_object_id` while most of the child classes use `$id`. As the parent class' is more descriptive, renaming the last parameter in each of child class.
Why? PHP 8 introduces the ability to pass named arguments to function/method calls. This means the child and parent method signatures (i.e. parameter names) need to match.
Changes for readability:
- `@since` clearly specifies the original parameter name and its new name as well as why the change happened.
- In methods longer than a single line, the generic parameter is reassigned to the original parameter restoring it for context for use within the method. An inline comment is added to explain why this reassignment is made.
- In cases where the original parameter name was too generic or misleading, renamed (when reassigning) to a more descriptive name for use within the method.
Follow-up to [7737], [8900], [8970], [14248], [15077], [16100], [25642], [25644], [37051], [37054], [37056], [46271], [47189], [51739].
Props jrf, hellofromTonya, sergeybiryukov, azaozz, desrosj, johnbillion.
See #51553.
Built from https://develop.svn.wordpress.org/trunk@51779
git-svn-id: http://core.svn.wordpress.org/trunk@51386 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-09-09 14:39:59 +02:00
|
|
|
public function start_el( &$output, $data_object, $depth = 0, $args = null, $current_object_id = 0 ) {
|
Code Modernization: Fix reserved keyword and parameter name mismatches for parent/child classes in `Walker::start_el()`.
In the parent class, renames the parameter `$object` to `$data_object`.
Why? `object` is a PHP reserved keyword.
In each child class: renames the corresponding parameter to match the parent's method signature.
Why?
PHP 8 introduces the ability to pass named arguments to function/method calls. This means the child and parent method signatures (i.e. parameter names) need to match.
Changes for readability:
- `@since` clearly specifies the original parameter name and its new name as well as why the change happened.
- in methods longer than a single line, the generic parameter is reassigned to the original parameter restoring it for context for use within the method. An inline comment is added to explain why this reassignment is made.
- in cases where the original parameter name was too generic, renamed (when reassigning) to a more descriptive name for use within the method.
Follow-up to [7737], [8900], [8970], [14248], [15077], [16100], [25642], [25644], [37051], [37054], [37056], [46271], [47189].
Props jrf, hellofromTonya, sergeybiryukov, azaozz, desrosj, johnbillion.
See #51553.
Built from https://develop.svn.wordpress.org/trunk@51739
git-svn-id: http://core.svn.wordpress.org/trunk@51347 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-09-08 17:36:59 +02:00
|
|
|
// Restores the more descriptive, specific name for use within this method.
|
|
|
|
$menu_item = $data_object;
|
|
|
|
|
2016-09-08 09:06:30 +02:00
|
|
|
if ( isset( $args->item_spacing ) && 'discard' === $args->item_spacing ) {
|
2016-09-06 11:06:31 +02:00
|
|
|
$t = '';
|
|
|
|
$n = '';
|
2016-09-08 09:06:30 +02:00
|
|
|
} else {
|
|
|
|
$t = "\t";
|
|
|
|
$n = "\n";
|
2016-09-06 11:06:31 +02:00
|
|
|
}
|
|
|
|
$indent = ( $depth ) ? str_repeat( $t, $depth ) : '';
|
2016-06-06 17:18:31 +02:00
|
|
|
|
Code Modernization: Fix reserved keyword and parameter name mismatches for parent/child classes in `Walker::start_el()`.
In the parent class, renames the parameter `$object` to `$data_object`.
Why? `object` is a PHP reserved keyword.
In each child class: renames the corresponding parameter to match the parent's method signature.
Why?
PHP 8 introduces the ability to pass named arguments to function/method calls. This means the child and parent method signatures (i.e. parameter names) need to match.
Changes for readability:
- `@since` clearly specifies the original parameter name and its new name as well as why the change happened.
- in methods longer than a single line, the generic parameter is reassigned to the original parameter restoring it for context for use within the method. An inline comment is added to explain why this reassignment is made.
- in cases where the original parameter name was too generic, renamed (when reassigning) to a more descriptive name for use within the method.
Follow-up to [7737], [8900], [8970], [14248], [15077], [16100], [25642], [25644], [37051], [37054], [37056], [46271], [47189].
Props jrf, hellofromTonya, sergeybiryukov, azaozz, desrosj, johnbillion.
See #51553.
Built from https://develop.svn.wordpress.org/trunk@51739
git-svn-id: http://core.svn.wordpress.org/trunk@51347 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-09-08 17:36:59 +02:00
|
|
|
$classes = empty( $menu_item->classes ) ? array() : (array) $menu_item->classes;
|
|
|
|
$classes[] = 'menu-item-' . $menu_item->ID;
|
2016-06-06 17:18:31 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Filters the arguments for a single nav menu item.
|
|
|
|
*
|
|
|
|
* @since 4.4.0
|
|
|
|
*
|
Code Modernization: Fix reserved keyword and parameter name mismatches for parent/child classes in `Walker::start_el()`.
In the parent class, renames the parameter `$object` to `$data_object`.
Why? `object` is a PHP reserved keyword.
In each child class: renames the corresponding parameter to match the parent's method signature.
Why?
PHP 8 introduces the ability to pass named arguments to function/method calls. This means the child and parent method signatures (i.e. parameter names) need to match.
Changes for readability:
- `@since` clearly specifies the original parameter name and its new name as well as why the change happened.
- in methods longer than a single line, the generic parameter is reassigned to the original parameter restoring it for context for use within the method. An inline comment is added to explain why this reassignment is made.
- in cases where the original parameter name was too generic, renamed (when reassigning) to a more descriptive name for use within the method.
Follow-up to [7737], [8900], [8970], [14248], [15077], [16100], [25642], [25644], [37051], [37054], [37056], [46271], [47189].
Props jrf, hellofromTonya, sergeybiryukov, azaozz, desrosj, johnbillion.
See #51553.
Built from https://develop.svn.wordpress.org/trunk@51739
git-svn-id: http://core.svn.wordpress.org/trunk@51347 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-09-08 17:36:59 +02:00
|
|
|
* @param stdClass $args An object of wp_nav_menu() arguments.
|
|
|
|
* @param WP_Post $menu_item Menu item data object.
|
|
|
|
* @param int $depth Depth of menu item. Used for padding.
|
2016-06-06 17:18:31 +02:00
|
|
|
*/
|
Code Modernization: Fix reserved keyword and parameter name mismatches for parent/child classes in `Walker::start_el()`.
In the parent class, renames the parameter `$object` to `$data_object`.
Why? `object` is a PHP reserved keyword.
In each child class: renames the corresponding parameter to match the parent's method signature.
Why?
PHP 8 introduces the ability to pass named arguments to function/method calls. This means the child and parent method signatures (i.e. parameter names) need to match.
Changes for readability:
- `@since` clearly specifies the original parameter name and its new name as well as why the change happened.
- in methods longer than a single line, the generic parameter is reassigned to the original parameter restoring it for context for use within the method. An inline comment is added to explain why this reassignment is made.
- in cases where the original parameter name was too generic, renamed (when reassigning) to a more descriptive name for use within the method.
Follow-up to [7737], [8900], [8970], [14248], [15077], [16100], [25642], [25644], [37051], [37054], [37056], [46271], [47189].
Props jrf, hellofromTonya, sergeybiryukov, azaozz, desrosj, johnbillion.
See #51553.
Built from https://develop.svn.wordpress.org/trunk@51739
git-svn-id: http://core.svn.wordpress.org/trunk@51347 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-09-08 17:36:59 +02:00
|
|
|
$args = apply_filters( 'nav_menu_item_args', $args, $menu_item, $depth );
|
2016-06-06 17:18:31 +02:00
|
|
|
|
|
|
|
/**
|
2018-03-25 21:35:29 +02:00
|
|
|
* Filters the CSS classes applied to a menu item's list item element.
|
2016-06-06 17:18:31 +02:00
|
|
|
*
|
|
|
|
* @since 3.0.0
|
|
|
|
* @since 4.1.0 The `$depth` parameter was added.
|
|
|
|
*
|
Code Modernization: Fix reserved keyword and parameter name mismatches for parent/child classes in `Walker::start_el()`.
In the parent class, renames the parameter `$object` to `$data_object`.
Why? `object` is a PHP reserved keyword.
In each child class: renames the corresponding parameter to match the parent's method signature.
Why?
PHP 8 introduces the ability to pass named arguments to function/method calls. This means the child and parent method signatures (i.e. parameter names) need to match.
Changes for readability:
- `@since` clearly specifies the original parameter name and its new name as well as why the change happened.
- in methods longer than a single line, the generic parameter is reassigned to the original parameter restoring it for context for use within the method. An inline comment is added to explain why this reassignment is made.
- in cases where the original parameter name was too generic, renamed (when reassigning) to a more descriptive name for use within the method.
Follow-up to [7737], [8900], [8970], [14248], [15077], [16100], [25642], [25644], [37051], [37054], [37056], [46271], [47189].
Props jrf, hellofromTonya, sergeybiryukov, azaozz, desrosj, johnbillion.
See #51553.
Built from https://develop.svn.wordpress.org/trunk@51739
git-svn-id: http://core.svn.wordpress.org/trunk@51347 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-09-08 17:36:59 +02:00
|
|
|
* @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. Used for padding.
|
2016-06-06 17:18:31 +02:00
|
|
|
*/
|
Code Modernization: Fix reserved keyword and parameter name mismatches for parent/child classes in `Walker::start_el()`.
In the parent class, renames the parameter `$object` to `$data_object`.
Why? `object` is a PHP reserved keyword.
In each child class: renames the corresponding parameter to match the parent's method signature.
Why?
PHP 8 introduces the ability to pass named arguments to function/method calls. This means the child and parent method signatures (i.e. parameter names) need to match.
Changes for readability:
- `@since` clearly specifies the original parameter name and its new name as well as why the change happened.
- in methods longer than a single line, the generic parameter is reassigned to the original parameter restoring it for context for use within the method. An inline comment is added to explain why this reassignment is made.
- in cases where the original parameter name was too generic, renamed (when reassigning) to a more descriptive name for use within the method.
Follow-up to [7737], [8900], [8970], [14248], [15077], [16100], [25642], [25644], [37051], [37054], [37056], [46271], [47189].
Props jrf, hellofromTonya, sergeybiryukov, azaozz, desrosj, johnbillion.
See #51553.
Built from https://develop.svn.wordpress.org/trunk@51739
git-svn-id: http://core.svn.wordpress.org/trunk@51347 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-09-08 17:36:59 +02:00
|
|
|
$class_names = implode( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $menu_item, $args, $depth ) );
|
2016-06-06 17:18:31 +02:00
|
|
|
$class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';
|
|
|
|
|
|
|
|
/**
|
Docs: Clarify documentation for the `nav_menu_item_id` filter.
This aims to make it clear that the filter is applied to an HTML ID attribute for the menu item's `<li>` element, and not a numeric ID.
Follow-up to [15407], [25410], [27201], [38559], [51739].
Props dilipbheda, robinwpdeveloper, mukesh27, audrasjb, SergeyBiryukov.
See #56574, #55646.
Built from https://develop.svn.wordpress.org/trunk@54178
git-svn-id: http://core.svn.wordpress.org/trunk@53737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-09-15 14:32:08 +02:00
|
|
|
* Filters the ID attribute applied to a menu item's list item element.
|
2016-06-06 17:18:31 +02:00
|
|
|
*
|
|
|
|
* @since 3.0.1
|
|
|
|
* @since 4.1.0 The `$depth` parameter was added.
|
|
|
|
*
|
Docs: Clarify documentation for the `nav_menu_item_id` filter.
This aims to make it clear that the filter is applied to an HTML ID attribute for the menu item's `<li>` element, and not a numeric ID.
Follow-up to [15407], [25410], [27201], [38559], [51739].
Props dilipbheda, robinwpdeveloper, mukesh27, audrasjb, SergeyBiryukov.
See #56574, #55646.
Built from https://develop.svn.wordpress.org/trunk@54178
git-svn-id: http://core.svn.wordpress.org/trunk@53737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-09-15 14:32:08 +02:00
|
|
|
* @param string $menu_item_id The ID attribute applied to the menu item's `<li>` element.
|
|
|
|
* @param WP_Post $menu_item The current menu item.
|
|
|
|
* @param stdClass $args An object of wp_nav_menu() arguments.
|
|
|
|
* @param int $depth Depth of menu item. Used for padding.
|
2016-06-06 17:18:31 +02:00
|
|
|
*/
|
Code Modernization: Fix reserved keyword and parameter name mismatches for parent/child classes in `Walker::start_el()`.
In the parent class, renames the parameter `$object` to `$data_object`.
Why? `object` is a PHP reserved keyword.
In each child class: renames the corresponding parameter to match the parent's method signature.
Why?
PHP 8 introduces the ability to pass named arguments to function/method calls. This means the child and parent method signatures (i.e. parameter names) need to match.
Changes for readability:
- `@since` clearly specifies the original parameter name and its new name as well as why the change happened.
- in methods longer than a single line, the generic parameter is reassigned to the original parameter restoring it for context for use within the method. An inline comment is added to explain why this reassignment is made.
- in cases where the original parameter name was too generic, renamed (when reassigning) to a more descriptive name for use within the method.
Follow-up to [7737], [8900], [8970], [14248], [15077], [16100], [25642], [25644], [37051], [37054], [37056], [46271], [47189].
Props jrf, hellofromTonya, sergeybiryukov, azaozz, desrosj, johnbillion.
See #51553.
Built from https://develop.svn.wordpress.org/trunk@51739
git-svn-id: http://core.svn.wordpress.org/trunk@51347 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-09-08 17:36:59 +02:00
|
|
|
$id = apply_filters( 'nav_menu_item_id', 'menu-item-' . $menu_item->ID, $menu_item, $args, $depth );
|
2016-06-06 17:18:31 +02:00
|
|
|
$id = $id ? ' id="' . esc_attr( $id ) . '"' : '';
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$output .= $indent . '<li' . $id . $class_names . '>';
|
2016-06-06 17:18:31 +02:00
|
|
|
|
2019-04-09 01:06:52 +02:00
|
|
|
$atts = array();
|
Code Modernization: Fix reserved keyword and parameter name mismatches for parent/child classes in `Walker::start_el()`.
In the parent class, renames the parameter `$object` to `$data_object`.
Why? `object` is a PHP reserved keyword.
In each child class: renames the corresponding parameter to match the parent's method signature.
Why?
PHP 8 introduces the ability to pass named arguments to function/method calls. This means the child and parent method signatures (i.e. parameter names) need to match.
Changes for readability:
- `@since` clearly specifies the original parameter name and its new name as well as why the change happened.
- in methods longer than a single line, the generic parameter is reassigned to the original parameter restoring it for context for use within the method. An inline comment is added to explain why this reassignment is made.
- in cases where the original parameter name was too generic, renamed (when reassigning) to a more descriptive name for use within the method.
Follow-up to [7737], [8900], [8970], [14248], [15077], [16100], [25642], [25644], [37051], [37054], [37056], [46271], [47189].
Props jrf, hellofromTonya, sergeybiryukov, azaozz, desrosj, johnbillion.
See #51553.
Built from https://develop.svn.wordpress.org/trunk@51739
git-svn-id: http://core.svn.wordpress.org/trunk@51347 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-09-08 17:36:59 +02:00
|
|
|
$atts['title'] = ! empty( $menu_item->attr_title ) ? $menu_item->attr_title : '';
|
|
|
|
$atts['target'] = ! empty( $menu_item->target ) ? $menu_item->target : '';
|
|
|
|
if ( '_blank' === $menu_item->target && empty( $menu_item->xfn ) ) {
|
2020-10-20 01:39:04 +02:00
|
|
|
$atts['rel'] = 'noopener';
|
2019-04-09 01:06:52 +02:00
|
|
|
} else {
|
Code Modernization: Fix reserved keyword and parameter name mismatches for parent/child classes in `Walker::start_el()`.
In the parent class, renames the parameter `$object` to `$data_object`.
Why? `object` is a PHP reserved keyword.
In each child class: renames the corresponding parameter to match the parent's method signature.
Why?
PHP 8 introduces the ability to pass named arguments to function/method calls. This means the child and parent method signatures (i.e. parameter names) need to match.
Changes for readability:
- `@since` clearly specifies the original parameter name and its new name as well as why the change happened.
- in methods longer than a single line, the generic parameter is reassigned to the original parameter restoring it for context for use within the method. An inline comment is added to explain why this reassignment is made.
- in cases where the original parameter name was too generic, renamed (when reassigning) to a more descriptive name for use within the method.
Follow-up to [7737], [8900], [8970], [14248], [15077], [16100], [25642], [25644], [37051], [37054], [37056], [46271], [47189].
Props jrf, hellofromTonya, sergeybiryukov, azaozz, desrosj, johnbillion.
See #51553.
Built from https://develop.svn.wordpress.org/trunk@51739
git-svn-id: http://core.svn.wordpress.org/trunk@51347 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-09-08 17:36:59 +02:00
|
|
|
$atts['rel'] = $menu_item->xfn;
|
2019-04-09 01:06:52 +02:00
|
|
|
}
|
Code Modernization: Fix reserved keyword and parameter name mismatches for parent/child classes in `Walker::start_el()`.
In the parent class, renames the parameter `$object` to `$data_object`.
Why? `object` is a PHP reserved keyword.
In each child class: renames the corresponding parameter to match the parent's method signature.
Why?
PHP 8 introduces the ability to pass named arguments to function/method calls. This means the child and parent method signatures (i.e. parameter names) need to match.
Changes for readability:
- `@since` clearly specifies the original parameter name and its new name as well as why the change happened.
- in methods longer than a single line, the generic parameter is reassigned to the original parameter restoring it for context for use within the method. An inline comment is added to explain why this reassignment is made.
- in cases where the original parameter name was too generic, renamed (when reassigning) to a more descriptive name for use within the method.
Follow-up to [7737], [8900], [8970], [14248], [15077], [16100], [25642], [25644], [37051], [37054], [37056], [46271], [47189].
Props jrf, hellofromTonya, sergeybiryukov, azaozz, desrosj, johnbillion.
See #51553.
Built from https://develop.svn.wordpress.org/trunk@51739
git-svn-id: http://core.svn.wordpress.org/trunk@51347 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-09-08 17:36:59 +02:00
|
|
|
$atts['href'] = ! empty( $menu_item->url ) ? $menu_item->url : '';
|
|
|
|
$atts['aria-current'] = $menu_item->current ? 'page' : '';
|
2016-06-06 17:18:31 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Filters the HTML attributes applied to a menu item's anchor element.
|
|
|
|
*
|
|
|
|
* @since 3.6.0
|
|
|
|
* @since 4.1.0 The `$depth` parameter was added.
|
|
|
|
*
|
|
|
|
* @param array $atts {
|
|
|
|
* The HTML attributes applied to the menu item's `<a>` element, empty strings are ignored.
|
|
|
|
*
|
2018-03-08 22:31:30 +01:00
|
|
|
* @type string $title Title attribute.
|
|
|
|
* @type string $target Target attribute.
|
|
|
|
* @type string $rel The rel attribute.
|
|
|
|
* @type string $href The href attribute.
|
2021-05-07 11:46:58 +02:00
|
|
|
* @type string $aria-current The aria-current attribute.
|
2016-06-06 17:18:31 +02:00
|
|
|
* }
|
Code Modernization: Fix reserved keyword and parameter name mismatches for parent/child classes in `Walker::start_el()`.
In the parent class, renames the parameter `$object` to `$data_object`.
Why? `object` is a PHP reserved keyword.
In each child class: renames the corresponding parameter to match the parent's method signature.
Why?
PHP 8 introduces the ability to pass named arguments to function/method calls. This means the child and parent method signatures (i.e. parameter names) need to match.
Changes for readability:
- `@since` clearly specifies the original parameter name and its new name as well as why the change happened.
- in methods longer than a single line, the generic parameter is reassigned to the original parameter restoring it for context for use within the method. An inline comment is added to explain why this reassignment is made.
- in cases where the original parameter name was too generic, renamed (when reassigning) to a more descriptive name for use within the method.
Follow-up to [7737], [8900], [8970], [14248], [15077], [16100], [25642], [25644], [37051], [37054], [37056], [46271], [47189].
Props jrf, hellofromTonya, sergeybiryukov, azaozz, desrosj, johnbillion.
See #51553.
Built from https://develop.svn.wordpress.org/trunk@51739
git-svn-id: http://core.svn.wordpress.org/trunk@51347 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-09-08 17:36:59 +02:00
|
|
|
* @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. Used for padding.
|
2016-06-06 17:18:31 +02:00
|
|
|
*/
|
Code Modernization: Fix reserved keyword and parameter name mismatches for parent/child classes in `Walker::start_el()`.
In the parent class, renames the parameter `$object` to `$data_object`.
Why? `object` is a PHP reserved keyword.
In each child class: renames the corresponding parameter to match the parent's method signature.
Why?
PHP 8 introduces the ability to pass named arguments to function/method calls. This means the child and parent method signatures (i.e. parameter names) need to match.
Changes for readability:
- `@since` clearly specifies the original parameter name and its new name as well as why the change happened.
- in methods longer than a single line, the generic parameter is reassigned to the original parameter restoring it for context for use within the method. An inline comment is added to explain why this reassignment is made.
- in cases where the original parameter name was too generic, renamed (when reassigning) to a more descriptive name for use within the method.
Follow-up to [7737], [8900], [8970], [14248], [15077], [16100], [25642], [25644], [37051], [37054], [37056], [46271], [47189].
Props jrf, hellofromTonya, sergeybiryukov, azaozz, desrosj, johnbillion.
See #51553.
Built from https://develop.svn.wordpress.org/trunk@51739
git-svn-id: http://core.svn.wordpress.org/trunk@51347 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-09-08 17:36:59 +02:00
|
|
|
$atts = apply_filters( 'nav_menu_link_attributes', $atts, $menu_item, $args, $depth );
|
2016-06-06 17:18:31 +02:00
|
|
|
|
|
|
|
$attributes = '';
|
|
|
|
foreach ( $atts as $attr => $value ) {
|
2019-10-06 17:06:03 +02:00
|
|
|
if ( is_scalar( $value ) && '' !== $value && false !== $value ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
$value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );
|
2016-06-06 17:18:31 +02:00
|
|
|
$attributes .= ' ' . $attr . '="' . $value . '"';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** This filter is documented in wp-includes/post-template.php */
|
Code Modernization: Fix reserved keyword and parameter name mismatches for parent/child classes in `Walker::start_el()`.
In the parent class, renames the parameter `$object` to `$data_object`.
Why? `object` is a PHP reserved keyword.
In each child class: renames the corresponding parameter to match the parent's method signature.
Why?
PHP 8 introduces the ability to pass named arguments to function/method calls. This means the child and parent method signatures (i.e. parameter names) need to match.
Changes for readability:
- `@since` clearly specifies the original parameter name and its new name as well as why the change happened.
- in methods longer than a single line, the generic parameter is reassigned to the original parameter restoring it for context for use within the method. An inline comment is added to explain why this reassignment is made.
- in cases where the original parameter name was too generic, renamed (when reassigning) to a more descriptive name for use within the method.
Follow-up to [7737], [8900], [8970], [14248], [15077], [16100], [25642], [25644], [37051], [37054], [37056], [46271], [47189].
Props jrf, hellofromTonya, sergeybiryukov, azaozz, desrosj, johnbillion.
See #51553.
Built from https://develop.svn.wordpress.org/trunk@51739
git-svn-id: http://core.svn.wordpress.org/trunk@51347 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-09-08 17:36:59 +02:00
|
|
|
$title = apply_filters( 'the_title', $menu_item->title, $menu_item->ID );
|
2016-06-06 17:18:31 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Filters a menu item's title.
|
|
|
|
*
|
|
|
|
* @since 4.4.0
|
|
|
|
*
|
Code Modernization: Fix reserved keyword and parameter name mismatches for parent/child classes in `Walker::start_el()`.
In the parent class, renames the parameter `$object` to `$data_object`.
Why? `object` is a PHP reserved keyword.
In each child class: renames the corresponding parameter to match the parent's method signature.
Why?
PHP 8 introduces the ability to pass named arguments to function/method calls. This means the child and parent method signatures (i.e. parameter names) need to match.
Changes for readability:
- `@since` clearly specifies the original parameter name and its new name as well as why the change happened.
- in methods longer than a single line, the generic parameter is reassigned to the original parameter restoring it for context for use within the method. An inline comment is added to explain why this reassignment is made.
- in cases where the original parameter name was too generic, renamed (when reassigning) to a more descriptive name for use within the method.
Follow-up to [7737], [8900], [8970], [14248], [15077], [16100], [25642], [25644], [37051], [37054], [37056], [46271], [47189].
Props jrf, hellofromTonya, sergeybiryukov, azaozz, desrosj, johnbillion.
See #51553.
Built from https://develop.svn.wordpress.org/trunk@51739
git-svn-id: http://core.svn.wordpress.org/trunk@51347 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-09-08 17:36:59 +02:00
|
|
|
* @param string $title The menu item's title.
|
|
|
|
* @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. Used for padding.
|
2016-06-06 17:18:31 +02:00
|
|
|
*/
|
Code Modernization: Fix reserved keyword and parameter name mismatches for parent/child classes in `Walker::start_el()`.
In the parent class, renames the parameter `$object` to `$data_object`.
Why? `object` is a PHP reserved keyword.
In each child class: renames the corresponding parameter to match the parent's method signature.
Why?
PHP 8 introduces the ability to pass named arguments to function/method calls. This means the child and parent method signatures (i.e. parameter names) need to match.
Changes for readability:
- `@since` clearly specifies the original parameter name and its new name as well as why the change happened.
- in methods longer than a single line, the generic parameter is reassigned to the original parameter restoring it for context for use within the method. An inline comment is added to explain why this reassignment is made.
- in cases where the original parameter name was too generic, renamed (when reassigning) to a more descriptive name for use within the method.
Follow-up to [7737], [8900], [8970], [14248], [15077], [16100], [25642], [25644], [37051], [37054], [37056], [46271], [47189].
Props jrf, hellofromTonya, sergeybiryukov, azaozz, desrosj, johnbillion.
See #51553.
Built from https://develop.svn.wordpress.org/trunk@51739
git-svn-id: http://core.svn.wordpress.org/trunk@51347 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-09-08 17:36:59 +02:00
|
|
|
$title = apply_filters( 'nav_menu_item_title', $title, $menu_item, $args, $depth );
|
2016-06-06 17:18:31 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$item_output = $args->before;
|
|
|
|
$item_output .= '<a' . $attributes . '>';
|
2016-06-06 17:18:31 +02:00
|
|
|
$item_output .= $args->link_before . $title . $args->link_after;
|
|
|
|
$item_output .= '</a>';
|
|
|
|
$item_output .= $args->after;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Filters a menu item's starting output.
|
|
|
|
*
|
|
|
|
* The menu item's starting output only includes `$args->before`, the opening `<a>`,
|
|
|
|
* the menu item's title, the closing `</a>`, and `$args->after`. Currently, there is
|
|
|
|
* no filter for modifying the opening and closing `<li>` for a menu item.
|
|
|
|
*
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
2016-09-07 18:15:30 +02:00
|
|
|
* @param string $item_output The menu item's starting HTML output.
|
Code Modernization: Fix reserved keyword and parameter name mismatches for parent/child classes in `Walker::start_el()`.
In the parent class, renames the parameter `$object` to `$data_object`.
Why? `object` is a PHP reserved keyword.
In each child class: renames the corresponding parameter to match the parent's method signature.
Why?
PHP 8 introduces the ability to pass named arguments to function/method calls. This means the child and parent method signatures (i.e. parameter names) need to match.
Changes for readability:
- `@since` clearly specifies the original parameter name and its new name as well as why the change happened.
- in methods longer than a single line, the generic parameter is reassigned to the original parameter restoring it for context for use within the method. An inline comment is added to explain why this reassignment is made.
- in cases where the original parameter name was too generic, renamed (when reassigning) to a more descriptive name for use within the method.
Follow-up to [7737], [8900], [8970], [14248], [15077], [16100], [25642], [25644], [37051], [37054], [37056], [46271], [47189].
Props jrf, hellofromTonya, sergeybiryukov, azaozz, desrosj, johnbillion.
See #51553.
Built from https://develop.svn.wordpress.org/trunk@51739
git-svn-id: http://core.svn.wordpress.org/trunk@51347 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-09-08 17:36:59 +02:00
|
|
|
* @param WP_Post $menu_item Menu item data object.
|
2016-09-07 18:15:30 +02:00
|
|
|
* @param int $depth Depth of menu item. Used for padding.
|
|
|
|
* @param stdClass $args An object of wp_nav_menu() arguments.
|
2016-06-06 17:18:31 +02:00
|
|
|
*/
|
Code Modernization: Fix reserved keyword and parameter name mismatches for parent/child classes in `Walker::start_el()`.
In the parent class, renames the parameter `$object` to `$data_object`.
Why? `object` is a PHP reserved keyword.
In each child class: renames the corresponding parameter to match the parent's method signature.
Why?
PHP 8 introduces the ability to pass named arguments to function/method calls. This means the child and parent method signatures (i.e. parameter names) need to match.
Changes for readability:
- `@since` clearly specifies the original parameter name and its new name as well as why the change happened.
- in methods longer than a single line, the generic parameter is reassigned to the original parameter restoring it for context for use within the method. An inline comment is added to explain why this reassignment is made.
- in cases where the original parameter name was too generic, renamed (when reassigning) to a more descriptive name for use within the method.
Follow-up to [7737], [8900], [8970], [14248], [15077], [16100], [25642], [25644], [37051], [37054], [37056], [46271], [47189].
Props jrf, hellofromTonya, sergeybiryukov, azaozz, desrosj, johnbillion.
See #51553.
Built from https://develop.svn.wordpress.org/trunk@51739
git-svn-id: http://core.svn.wordpress.org/trunk@51347 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-09-08 17:36:59 +02:00
|
|
|
$output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $menu_item, $depth, $args );
|
2016-06-06 17:18:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Ends the element output, if needed.
|
|
|
|
*
|
|
|
|
* @since 3.0.0
|
Code Modernization: Fix reserved keyword and parameter name mismatches for parent/child classes in `Walker::end_el()`.
In the parent class, renames the parameter `$object` to `$data_object`.
Why? `object` is a PHP reserved keyword. The parameter name is selected for consistency with `Walker::start_el()`.
In each child class: renames the parameter to match the parent's method signature.
Why? PHP 8 introduces the ability to pass named arguments to function/method calls. This means the child and parent method signatures (i.e. parameter names) need to match.
Changes for readability:
- `@since` clearly specifies the original parameter name and its new name as well as why the change happened.
Follow-up to [7737], [8900], [8970], [14248], [16100], [25642], [25644], [37051], [37056].
Props jrf, hellofromTonya, sergeybiryukov, azaozz, desrosj, johnbillion.
See #51553.
Built from https://develop.svn.wordpress.org/trunk@51780
git-svn-id: http://core.svn.wordpress.org/trunk@51387 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-09-09 15:03:55 +02:00
|
|
|
* @since 5.9.0 Renamed `$item` to `$data_object` to match parent class for PHP 8 named parameter support.
|
2016-06-06 17:18:31 +02:00
|
|
|
*
|
|
|
|
* @see Walker::end_el()
|
|
|
|
*
|
Code Modernization: Fix reserved keyword and parameter name mismatches for parent/child classes in `Walker::end_el()`.
In the parent class, renames the parameter `$object` to `$data_object`.
Why? `object` is a PHP reserved keyword. The parameter name is selected for consistency with `Walker::start_el()`.
In each child class: renames the parameter to match the parent's method signature.
Why? PHP 8 introduces the ability to pass named arguments to function/method calls. This means the child and parent method signatures (i.e. parameter names) need to match.
Changes for readability:
- `@since` clearly specifies the original parameter name and its new name as well as why the change happened.
Follow-up to [7737], [8900], [8970], [14248], [16100], [25642], [25644], [37051], [37056].
Props jrf, hellofromTonya, sergeybiryukov, azaozz, desrosj, johnbillion.
See #51553.
Built from https://develop.svn.wordpress.org/trunk@51780
git-svn-id: http://core.svn.wordpress.org/trunk@51387 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-09-09 15:03:55 +02:00
|
|
|
* @param string $output Used to append additional content (passed by reference).
|
|
|
|
* @param WP_Post $data_object Menu item data object. Not used.
|
|
|
|
* @param int $depth Depth of page. Not Used.
|
|
|
|
* @param stdClass $args An object of wp_nav_menu() arguments.
|
2016-06-06 17:18:31 +02:00
|
|
|
*/
|
Code Modernization: Fix reserved keyword and parameter name mismatches for parent/child classes in `Walker::end_el()`.
In the parent class, renames the parameter `$object` to `$data_object`.
Why? `object` is a PHP reserved keyword. The parameter name is selected for consistency with `Walker::start_el()`.
In each child class: renames the parameter to match the parent's method signature.
Why? PHP 8 introduces the ability to pass named arguments to function/method calls. This means the child and parent method signatures (i.e. parameter names) need to match.
Changes for readability:
- `@since` clearly specifies the original parameter name and its new name as well as why the change happened.
Follow-up to [7737], [8900], [8970], [14248], [16100], [25642], [25644], [37051], [37056].
Props jrf, hellofromTonya, sergeybiryukov, azaozz, desrosj, johnbillion.
See #51553.
Built from https://develop.svn.wordpress.org/trunk@51780
git-svn-id: http://core.svn.wordpress.org/trunk@51387 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-09-09 15:03:55 +02:00
|
|
|
public function end_el( &$output, $data_object, $depth = 0, $args = null ) {
|
2016-09-08 09:06:30 +02:00
|
|
|
if ( isset( $args->item_spacing ) && 'discard' === $args->item_spacing ) {
|
2016-09-06 11:06:31 +02:00
|
|
|
$t = '';
|
|
|
|
$n = '';
|
2016-09-08 09:06:30 +02:00
|
|
|
} else {
|
|
|
|
$t = "\t";
|
|
|
|
$n = "\n";
|
2016-09-06 11:06:31 +02:00
|
|
|
}
|
|
|
|
$output .= "</li>{$n}";
|
2016-06-06 17:18:31 +02:00
|
|
|
}
|
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
}
|