Changeset 10108 for trunk/src/bp-core/classes/class-bp-walker-nav-menu.php
- Timestamp:
- 09/13/2015 02:02:56 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-core/classes/class-bp-walker-nav-menu.php
r10012 r10108 7 7 */ 8 8 9 // Exit if accessed directly 9 // Exit if accessed directly. 10 10 defined( 'ABSPATH' ) || exit; 11 11 … … 13 13 * Create HTML list of BP nav items. 14 14 * 15 * @since BuddyPress (1.7.0)15 * @since 1.7.0 16 16 */ 17 17 class BP_Walker_Nav_Menu extends Walker_Nav_Menu { … … 20 20 * Description of fields indexes for building markup. 21 21 * 22 * @since BuddyPress (1.7.0)22 * @since 1.7.0 23 23 * @var array 24 24 */ … … 28 28 * Tree type. 29 29 * 30 * @since BuddyPress (1.7.0)30 * @since 1.7.0 31 31 * @var string 32 32 */ … … 46 46 * those have ID/post_parent. 47 47 * 48 * @since BuddyPress (1.7.0)48 * @since 1.7.0 49 49 * 50 50 * @see Walker::walk() … … 138 138 * @see Walker::start_el() for complete description of parameters. 139 139 * 140 * @since BuddyPress (1.7.0)140 * @since 1.7.0 141 141 * 142 142 * @param string $output Passed by reference. Used to append … … 155 155 * Filters the classes to be added to the nav menu markup. 156 156 * 157 * @since BuddyPress (1.7.0)157 * @since 1.7.0 158 158 * 159 159 * @param array $value Array of classes to be added. … … 170 170 * Filters the value to be used for the nav menu ID attribute. 171 171 * 172 * @since BuddyPress (1.7.0)172 * @since 1.7.0 173 173 * 174 174 * @param string $id ID attribute to be added to the menu item. … … 192 192 * Filters the link text to be added to the item output. 193 193 * 194 * @since BuddyPress (1.7.0)194 * @since 1.7.0 195 195 * 196 196 * @param string $name Item text to be applied. … … 204 204 * Filters the final result for the menu item. 205 205 * 206 * @since BuddyPress (1.7.0)206 * @since 1.7.0 207 207 * 208 208 * @param string $item_output Constructed output for the menu item to append to output.
Note: See TracChangeset
for help on using the changeset viewer.