- Timestamp:
- 07/12/2015 12:49:36 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-core/classes/class-bp-walker-nav-menu-checklist.php
r9819 r10012 14 14 * 15 15 * Borrowed heavily from {@link Walker_Nav_Menu_Checklist}, but modified so as not 16 * to require an actual post type or taxonomy, and to force certain CSS classes 16 * to require an actual post type or taxonomy, and to force certain CSS classes. 17 17 * 18 18 * @since BuddyPress (1.9.0) … … 25 25 * @see Walker_Nav_Menu::__construct() for a description of parameters. 26 26 * 27 * @param array $fields See {@link Walker_Nav_Menu::__construct()}.27 * @param array|bool $fields See {@link Walker_Nav_Menu::__construct()}. 28 28 */ 29 29 public function __construct( $fields = false ) { … … 39 39 * 40 40 * @param string $output See {@Walker_Nav_Menu::start_lvl()}. 41 * @param int $depthSee {@Walker_Nav_Menu::start_lvl()}.42 * @param array $argsSee {@Walker_Nav_Menu::start_lvl()}.41 * @param int $depth See {@Walker_Nav_Menu::start_lvl()}. 42 * @param array $args See {@Walker_Nav_Menu::start_lvl()}. 43 43 */ 44 44 public function start_lvl( &$output, $depth = 0, $args = array() ) { … … 53 53 * 54 54 * @param string $output See {@Walker_Nav_Menu::end_lvl()}. 55 * @param int $depthSee {@Walker_Nav_Menu::end_lvl()}.56 * @param array $argsSee {@Walker_Nav_Menu::end_lvl()}.55 * @param int $depth See {@Walker_Nav_Menu::end_lvl()}. 56 * @param array $args See {@Walker_Nav_Menu::end_lvl()}. 57 57 */ 58 58 public function end_lvl( &$output, $depth = 0, $args = array() ) { … … 66 66 * @see Walker::start_el() for description of parameters. 67 67 * 68 * @param string $output Passed by reference. Used to append additional69 * content.70 * @param object $itemMenu item data object.71 * @param int $depthDepth of menu item. Used for padding.72 * @param object $argsSee {@Walker::start_el()}.73 * @param int $idSee {@Walker::start_el()}.68 * @param string $output Passed by reference. Used to append additional 69 * content. 70 * @param object $item Menu item data object. 71 * @param int $depth Depth of menu item. Used for padding. 72 * @param object|array $args See {@Walker::start_el()}. 73 * @param int $id See {@Walker::start_el()}. 74 74 */ 75 75 function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {
Note: See TracChangeset
for help on using the changeset viewer.