Skip to:
Content

BuddyPress.org

Ticket #7611: 7611-wp-version.patch

File 7611-wp-version.patch, 9.3 KB (added by mercime, 7 years ago)
  • src/bp-groups/bp-groups-admin.php

     
    580580        do_action_ref_array( 'bp_groups_admin_edit', array( &$group ) ); ?>
    581581
    582582        <div class="wrap">
    583                 <h1><?php _e( 'Edit Group', 'buddypress' ); ?>
     583                <?php if ( version_compare( $GLOBALS['wp_version'], '4.8', '>=' ) ) : ?>
    584584
     585                        <h1 class="wp-heading-inline"><?php _e( 'Edit Group', 'buddypress' ); ?></h1>
     586
    585587                        <?php if ( is_user_logged_in() && bp_user_can_create_groups() ) : ?>
    586                                 <a class="add-new-h2" href="<?php echo trailingslashit( bp_get_groups_directory_permalink() . 'create' ); ?>"><?php _e( 'Add New', 'buddypress' ); ?></a>
     588                                <a class="page-title-action" href="<?php echo trailingslashit( bp_get_groups_directory_permalink() . 'create' ); ?>"><?php _e( 'Add New', 'buddypress' ); ?></a>
    587589                        <?php endif; ?>
    588590
    589                 </h1>
     591                        <hr class="wp-header-end">
    590592
     593                <?php else : ?>
     594
     595                        <h1><?php _e( 'Edit Group', 'buddypress' ); ?>
     596
     597                                <?php if ( is_user_logged_in() && bp_user_can_create_groups() ) : ?>
     598                                        <a class="add-new-h2" href="<?php echo trailingslashit( bp_get_groups_directory_permalink() . 'create' ); ?>"><?php _e( 'Add New', 'buddypress' ); ?></a>
     599                                <?php endif; ?>
     600
     601                        </h1>
     602
     603                <?php endif; ?>
     604
    591605                <?php // If the user has just made a change to an group, display the status messages. ?>
    592606                <?php if ( !empty( $messages ) ) : ?>
    593607                        <div id="moderated" class="<?php echo ( $is_error ) ? 'error' : 'updated'; ?>"><p><?php echo implode( "</p><p>", $messages ); ?></p></div>
     
    752766        do_action( 'bp_groups_admin_index', $messages ); ?>
    753767
    754768        <div class="wrap">
     769                <?php if ( version_compare( $GLOBALS['wp_version'], '4.8', '>=' ) ) : ?>
     770
     771                        <h1 class="wp-heading-inline"><?php _e( 'Groups', 'buddypress' ); ?></h1>
     772
     773                        <?php if ( is_user_logged_in() && bp_user_can_create_groups() ) : ?>
     774                                <a class="page-title-action" href="<?php echo trailingslashit( bp_get_groups_directory_permalink() . 'create' ); ?>"><?php _e( 'Add New', 'buddypress' ); ?></a>
     775                        <?php endif; ?>
     776
     777                        <?php if ( !empty( $_REQUEST['s'] ) ) : ?>
     778                                <span class="subtitle"><?php printf( __( 'Search results for &#8220;%s&#8221;', 'buddypress' ), wp_html_excerpt( esc_html( stripslashes( $_REQUEST['s'] ) ), 50 ) ); ?></span>
     779                        <?php endif; ?>
     780
     781                        <hr class="wp-header-end">
     782
     783                <?php else : ?>
     784
    755785                <h1>
    756786                        <?php _e( 'Groups', 'buddypress' ); ?>
    757787
     
    764794                        <?php endif; ?>
    765795                </h1>
    766796
     797                <?php endif; ?>
     798
    767799                <?php // If the user has just made a change to an group, display the status messages. ?>
    768800                <?php if ( !empty( $messages ) ) : ?>
    769801                        <div id="moderated" class="<?php echo ( ! empty( $_REQUEST['error'] ) ) ? 'error' : 'updated'; ?>"><p><?php echo implode( "<br/>\n", $messages ); ?></p></div>
  • src/bp-members/classes/class-bp-members-admin.php

     
    942942                <?php endif; ?>
    943943
    944944                <div class="wrap" id="community-profile-page">
    945                         <h1><?php echo esc_html( $title ); ?>
     945                        <?php if ( version_compare( $GLOBALS['wp_version'], '4.8', '>=' ) ) : ?>
    946946
     947                                <h1 class="wp-heading-inline"><?php echo esc_html( $title ); ?></h1>
     948
    947949                                <?php if ( empty( $this->is_self_profile ) ) : ?>
    948950
    949951                                        <?php if ( current_user_can( 'create_users' ) ) : ?>
    950952
    951                                                 <a href="user-new.php" class="add-new-h2"><?php echo esc_html_x( 'Add New', 'user', 'buddypress' ); ?></a>
     953                                                <a href="user-new.php" class="page-title-action"><?php echo esc_html_x( 'Add New', 'user', 'buddypress' ); ?></a>
    952954
    953955                                        <?php elseif ( is_multisite() && current_user_can( 'promote_users' ) ) : ?>
    954956
    955                                                 <a href="user-new.php" class="add-new-h2"><?php echo esc_html_x( 'Add Existing', 'user', 'buddypress' ); ?></a>
     957                                                <a href="user-new.php" class="page-title-action"><?php echo esc_html_x( 'Add Existing', 'user', 'buddypress' ); ?></a>
    956958
    957959                                        <?php endif; ?>
    958960
    959961                                <?php endif; ?>
    960                         </h1>
    961962
     963                                <hr class="wp-header-end">
     964
     965                        <?php else : ?>
     966
     967                                <h1><?php echo esc_html( $title ); ?>
     968
     969                                        <?php if ( empty( $this->is_self_profile ) ) : ?>
     970
     971                                                <?php if ( current_user_can( 'create_users' ) ) : ?>
     972
     973                                                        <a href="user-new.php" class="add-new-h2"><?php echo esc_html_x( 'Add New', 'user', 'buddypress' ); ?></a>
     974
     975                                                <?php elseif ( is_multisite() && current_user_can( 'promote_users' ) ) : ?>
     976
     977                                                        <a href="user-new.php" class="add-new-h2"><?php echo esc_html_x( 'Add Existing', 'user', 'buddypress' ); ?></a>
     978
     979                                                <?php endif; ?>
     980
     981                                        <?php endif; ?>
     982                                </h1>
     983
     984                        <?php endif; ?>
     985
    962986                        <?php if ( ! empty( $user ) ) :
    963987
    964988                                $this->profile_nav( $user, 'BuddyPress' ); ?>
     
    19181942                ?>
    19191943
    19201944                <div class="wrap">
    1921                         <h1><?php _e( 'Users', 'buddypress' ); ?>
     1945                        <?php if ( version_compare( $GLOBALS['wp_version'], '4.8', '>=' ) ) : ?>
    19221946
     1947                                <h1 class="wp-heading-inline"><?php _e( 'Users', 'buddypress' ); ?></h1>
     1948
    19231949                                <?php if ( current_user_can( 'create_users' ) ) : ?>
    19241950
    1925                                         <a href="user-new.php" class="add-new-h2"><?php echo esc_html_x( 'Add New', 'user', 'buddypress' ); ?></a>
     1951                                        <a href="user-new.php" class="page-title-action"><?php echo esc_html_x( 'Add New', 'user', 'buddypress' ); ?></a>
    19261952
    19271953                                <?php elseif ( is_multisite() && current_user_can( 'promote_users' ) ) : ?>
    19281954
    1929                                         <a href="user-new.php" class="add-new-h2"><?php echo esc_html_x( 'Add Existing', 'user', 'buddypress' ); ?></a>
     1955                                        <a href="user-new.php" class="page-title-action"><?php echo esc_html_x( 'Add Existing', 'user', 'buddypress' ); ?></a>
    19301956
    19311957                                <?php endif;
    19321958
     
    19331959                                if ( $usersearch ) {
    19341960                                        printf( '<span class="subtitle">' . __( 'Search results for &#8220;%s&#8221;', 'buddypress' ) . '</span>', esc_html( $usersearch ) );
    19351961                                }
    1936 
    19371962                                ?>
    1938                         </h1>
    19391963
     1964                                <hr class="wp-header-end">
     1965
     1966                        <?php else : ?>
     1967
     1968                                <h1><?php _e( 'Users', 'buddypress' ); ?>
     1969
     1970                                        <?php if ( current_user_can( 'create_users' ) ) : ?>
     1971
     1972                                                <a href="user-new.php" class="add-new-h2"><?php echo esc_html_x( 'Add New', 'user', 'buddypress' ); ?></a>
     1973
     1974                                        <?php elseif ( is_multisite() && current_user_can( 'promote_users' ) ) : ?>
     1975
     1976                                                <a href="user-new.php" class="add-new-h2"><?php echo esc_html_x( 'Add Existing', 'user', 'buddypress' ); ?></a>
     1977
     1978                                        <?php endif;
     1979
     1980                                        if ( $usersearch ) {
     1981                                                printf( '<span class="subtitle">' . __( 'Search results for &#8220;%s&#8221;', 'buddypress' ) . '</span>', esc_html( $usersearch ) );
     1982                                        }
     1983
     1984                                        ?>
     1985                                </h1>
     1986
     1987                        <?php endif; ?>
     1988
    19401989                        <?php // Display each signups on its own row. ?>
    19411990                        <?php $bp_members_signup_list_table->views(); ?>
    19421991
  • src/bp-templates/bp-nouveau/includes/messages/classes.php

     
    170170                $this->list_table->prepare_items();
    171171                ?>
    172172                <div class="wrap">
     173                        <?php if ( version_compare( $GLOBALS['wp_version'], '4.8', '>=' ) ) : ?>
    173174
    174                         <h1>
    175                                 <?php echo esc_html_x( 'All Member Notices', 'Notices admin page title', 'buddypress' ); ?>
    176                                 <a id="add_notice" class="add-new-h2" href="#"><?php esc_html_e( 'Add New Notice', 'buddypress' ); ?></a>
    177                         </h1>
     175                                <h1 class="wp-heading-inline"><?php echo esc_html_x( 'All Member Notices', 'Notices admin page title', 'buddypress' ); ?></h1>
    178176
     177                                        <a id="add_notice" class="page-title-action" href="#"><?php esc_html_e( 'Add New Notice', 'buddypress' ); ?></a>
     178
     179                                <hr class="wp-header-end">
     180
     181                        <?php else : ?>
     182
     183                                <h1>
     184                                        <?php echo esc_html_x( 'All Member Notices', 'Notices admin page title', 'buddypress' ); ?>
     185                                        <a id="add_notice" class="add-new-h2" href="#"><?php esc_html_e( 'Add New Notice', 'buddypress' ); ?></a>
     186                                </h1>
     187
     188                        <?php endif; ?>
     189
    179190                        <form action=<?php echo esc_url( $this->url ); ?> method="post">
    180191                                <table class="widefat">
    181192                                        <tr>
  • src/bp-xprofile/bp-xprofile-admin.php

     
    133133        ) ); ?>
    134134
    135135        <div class="wrap">
     136                <?php if ( version_compare( $GLOBALS['wp_version'], '4.8', '>=' ) ) : ?>
    136137
    137                 <h1>
    138                         <?php _ex( 'Profile Fields', 'Settings page header', 'buddypress'); ?>
    139                         <a id="add_group" class="add-new-h2" href="users.php?page=bp-profile-setup&amp;mode=add_group"><?php _e( 'Add New Field Group', 'buddypress' ); ?></a>
    140                 </h1>
     138                        <h1 class="wp-heading-inline"><?php _ex( 'Profile Fields', 'Settings page header', 'buddypress'); ?></h1>
    141139
     140                                <a id="add_group" class="page-title-action" href="users.php?page=bp-profile-setup&amp;mode=add_group"><?php _e( 'Add New Field Group', 'buddypress' ); ?></a>
     141
     142                        <hr class="wp-header-end">
     143
     144                <?php else : ?>
     145
     146                        <h1>
     147                                <?php _ex( 'Profile Fields', 'Settings page header', 'buddypress'); ?>
     148                                <a id="add_group" class="add-new-h2" href="users.php?page=bp-profile-setup&amp;mode=add_group"><?php _e( 'Add New Field Group', 'buddypress' ); ?></a>
     149                        </h1>
     150
     151                <?php endif; ?>
     152
    142153                <form action="" id="profile-field-form" method="post">
    143154
    144155                        <?php