Skip to:
Content

BuddyPress.org

Changeset 11059


Ignore:
Timestamp:
09/02/2016 01:00:07 AM (8 years ago)
Author:
tw2113
Message:

Add a "select all" link to the BuddyPress menu section for the WP Nav Menu system.

Fixes #5260.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-core/admin/bp-core-admin-functions.php

    r10828 r11059  
    805805        </div>
    806806
     807        <?php
     808        $removed_args = array(
     809            'action',
     810            'customlink-tab',
     811            'edit-menu-item',
     812            'menu-item',
     813            'page-tab',
     814            '_wpnonce',
     815        );
     816        ?>
     817
    807818        <p class="button-controls">
     819            <span class="list-controls">
     820                <a href="<?php
     821                echo esc_url( add_query_arg(
     822                    array(
     823                        $post_type_name . '-tab' => 'all',
     824                        'selectall'              => 1,
     825                    ),
     826                    remove_query_arg( $removed_args )
     827                ) );
     828                ?>#buddypress-menu" class="select-all"><?php _e( 'Select All', 'buddypress' ); ?></a>
     829            </span>
    808830            <span class="add-to-menu">
    809831                <input type="submit"<?php if ( function_exists( 'wp_nav_menu_disabled_check' ) ) : wp_nav_menu_disabled_check( $nav_menu_selected_id ); endif; ?> class="button-secondary submit-add-to-menu right" value="<?php esc_attr_e( 'Add to Menu', 'buddypress' ); ?>" name="add-custom-menu-item" id="submit-buddypress-menu" />
Note: See TracChangeset for help on using the changeset viewer.