Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
09/13/2015 02:02:56 AM (10 years ago)
Author:
tw2113
Message:

Standardizing our @since tags for the Core component.

See #6576.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-core/classes/class-bp-walker-nav-menu.php

    r10012 r10108  
    77 */
    88
    9 // Exit if accessed directly
     9// Exit if accessed directly.
    1010defined( 'ABSPATH' ) || exit;
    1111
     
    1313 * Create HTML list of BP nav items.
    1414 *
    15  * @since BuddyPress (1.7.0)
     15 * @since 1.7.0
    1616 */
    1717class BP_Walker_Nav_Menu extends Walker_Nav_Menu {
     
    2020     * Description of fields indexes for building markup.
    2121     *
    22      * @since BuddyPress (1.7.0)
     22     * @since 1.7.0
    2323     * @var array
    2424     */
     
    2828     * Tree type.
    2929     *
    30      * @since BuddyPress (1.7.0)
     30     * @since 1.7.0
    3131     * @var string
    3232     */
     
    4646     * those have ID/post_parent.
    4747     *
    48      * @since BuddyPress (1.7.0)
     48     * @since 1.7.0
    4949     *
    5050     * @see Walker::walk()
     
    138138     * @see Walker::start_el() for complete description of parameters.
    139139     *
    140      * @since BuddyPress (1.7.0)
     140     * @since 1.7.0
    141141     *
    142142     * @param string $output Passed by reference. Used to append
     
    155155         * Filters the classes to be added to the nav menu markup.
    156156         *
    157          * @since BuddyPress (1.7.0)
     157         * @since 1.7.0
    158158         *
    159159         * @param array  $value Array of classes to be added.
     
    170170         * Filters the value to be used for the nav menu ID attribute.
    171171         *
    172          * @since BuddyPress (1.7.0)
     172         * @since 1.7.0
    173173         *
    174174         * @param string $id   ID attribute to be added to the menu item.
     
    192192         * Filters the link text to be added to the item output.
    193193         *
    194          * @since BuddyPress (1.7.0)
     194         * @since 1.7.0
    195195         *
    196196         * @param string $name  Item text to be applied.
     
    204204         * Filters the final result for the menu item.
    205205         *
    206          * @since BuddyPress (1.7.0)
     206         * @since 1.7.0
    207207         *
    208208         * @param string $item_output Constructed output for the menu item to append to output.
Note: See TracChangeset for help on using the changeset viewer.