Skip to:
Content

BuddyPress.org

Ticket #6581: 6581.diff

File 6581.diff, 7.0 KB (added by mercime, 9 years ago)

First pass at BP admin panels

  • src/bp-activity/bp-activity-admin.php

    diff --git src/bp-activity/bp-activity-admin.php src/bp-activity/bp-activity-admin.php
    index 1e28ca8..dd4075f 100644
    function bp_activity_admin_edit() { 
    648648
    649649        <div class="wrap">
    650650                <?php screen_icon( 'buddypress-activity' ); ?>
    651                 <h2><?php printf( __( 'Editing Activity (ID #%s)', 'buddypress' ), number_format_i18n( (int) $_REQUEST['aid'] ) ); ?></h2>
     651                <h1><?php printf( __( 'Editing Activity (ID #%s)', 'buddypress' ), number_format_i18n( (int) $_REQUEST['aid'] ) ); ?></h1>
    652652
    653653                <?php if ( ! empty( $activity ) ) : ?>
    654654
    function bp_activity_admin_index() { 
    965965
    966966        <div class="wrap">
    967967                <?php screen_icon( 'buddypress-activity' ); ?>
    968                 <h2>
     968                <h1>
    969969                        <?php if ( !empty( $_REQUEST['aid'] ) ) : ?>
    970970                                <?php printf( __( 'Activity related to ID #%s', 'buddypress' ), number_format_i18n( (int) $_REQUEST['aid'] ) ); ?>
    971971                        <?php else : ?>
    function bp_activity_admin_index() { 
    975975                        <?php if ( !empty( $_REQUEST['s'] ) ) : ?>
    976976                                <span class="subtitle"><?php printf( __( 'Search results for &#8220;%s&#8221;', 'buddypress' ), wp_html_excerpt( esc_html( stripslashes( $_REQUEST['s'] ) ), 50 ) ); ?></span>
    977977                        <?php endif; ?>
    978                 </h2>
     978                </h1>
    979979
    980980                <?php // If the user has just made a change to an activity item, display the status messages ?>
    981981                <?php if ( !empty( $messages ) ) : ?>
  • src/bp-groups/bp-groups-admin.php

    diff --git src/bp-groups/bp-groups-admin.php src/bp-groups/bp-groups-admin.php
    index 66cae04..ab22398 100644
    function bp_groups_admin_edit() { 
    567567
    568568        <div class="wrap">
    569569                <?php screen_icon( 'buddypress-groups' ); ?>
    570                 <h2><?php _e( 'Edit Group', 'buddypress' ); ?>
     570                <h1><?php _e( 'Edit Group', 'buddypress' ); ?>
    571571
    572572                        <?php if ( is_user_logged_in() && bp_user_can_create_groups() ) : ?>
    573                                 <a class="add-new-h2" href="<?php echo trailingslashit( bp_get_groups_directory_permalink() . 'create' ); ?>"><?php _e( 'Add New', 'buddypress' ); ?></a>
     573                                <a class="page-title-action" href="<?php echo trailingslashit( bp_get_groups_directory_permalink() . 'create' ); ?>"><?php _e( 'Add New', 'buddypress' ); ?></a>
    574574                        <?php endif; ?>
    575575
    576                 </h2>
     576                </h1>
    577577
    578578                <?php // If the user has just made a change to an group, display the status messages ?>
    579579                <?php if ( !empty( $messages ) ) : ?>
    function bp_groups_admin_delete() { 
    663663
    664664        <div class="wrap">
    665665                <?php screen_icon( 'buddypress-groups' ); ?>
    666                 <h2><?php _e( 'Delete Groups', 'buddypress' ) ?></h2>
     666                <h1><?php _e( 'Delete Groups', 'buddypress' ) ?></h1>
    667667                <p><?php _e( 'You are about to delete the following groups:', 'buddypress' ) ?></p>
    668668
    669669                <ul class="bp-group-delete-list">
    function bp_groups_admin_index() { 
    721721
    722722        <div class="wrap">
    723723                <?php screen_icon( 'buddypress-groups' ); ?>
    724                 <h2>
     724                <h1>
    725725                        <?php _e( 'Groups', 'buddypress' ); ?>
    726726
    727727                        <?php if ( is_user_logged_in() && bp_user_can_create_groups() ) : ?>
    728                                 <a class="add-new-h2" href="<?php echo trailingslashit( bp_get_groups_directory_permalink() . 'create' ); ?>"><?php _e( 'Add New', 'buddypress' ); ?></a>
     728                                <a class="page-title-action" href="<?php echo trailingslashit( bp_get_groups_directory_permalink() . 'create' ); ?>"><?php _e( 'Add New', 'buddypress' ); ?></a>
    729729                        <?php endif; ?>
    730730
    731731                        <?php if ( !empty( $_REQUEST['s'] ) ) : ?>
    732732                                <span class="subtitle"><?php printf( __( 'Search results for &#8220;%s&#8221;', 'buddypress' ), wp_html_excerpt( esc_html( stripslashes( $_REQUEST['s'] ) ), 50 ) ); ?></span>
    733733                        <?php endif; ?>
    734                 </h2>
     734                </h1>
    735735
    736736                <?php // If the user has just made a change to an group, display the status messages ?>
    737737                <?php if ( !empty( $messages ) ) : ?>
  • src/bp-members/bp-members-admin.php

    diff --git src/bp-members/bp-members-admin.php src/bp-members/bp-members-admin.php
    index 9175086..d1c410f 100644
    class BP_Members_Admin { 
    887887
    888888                <div class="wrap" id="community-profile-page">
    889889                        <?php screen_icon( 'users' ); ?>
    890                         <h2><?php echo esc_html( $title ); ?>
     890                        <h1><?php echo esc_html( $title ); ?>
    891891
    892892                                <?php if ( empty( $this->is_self_profile ) ) : ?>
    893893
    894894                                        <?php if ( current_user_can( 'create_users' ) ) : ?>
    895895
    896                                                 <a href="user-new.php" class="add-new-h2"><?php echo esc_html_x( 'Add New', 'user', 'buddypress' ); ?></a>
     896                                                <a href="user-new.php" class="page-title-action"><?php echo esc_html_x( 'Add New', 'user', 'buddypress' ); ?></a>
    897897
    898898                                        <?php elseif ( is_multisite() && current_user_can( 'promote_users' ) ) : ?>
    899899
    900                                                 <a href="user-new.php" class="add-new-h2"><?php echo esc_html_x( 'Add Existing', 'user', 'buddypress' ); ?></a>
     900                                                <a href="user-new.php" class="page-title-action"><?php echo esc_html_x( 'Add Existing', 'user', 'buddypress' ); ?></a>
    901901
    902902                                        <?php endif; ?>
    903903
    904904                                <?php endif; ?>
    905                         </h2>
     905                        </h1>
    906906
    907907                        <?php if ( ! empty( $user ) ) :
    908908
    class BP_Members_Admin { 
    18411841
    18421842                <div class="wrap">
    18431843                        <?php screen_icon( 'users' ); ?>
    1844                         <h2><?php _e( 'Users', 'buddypress' ); ?>
     1844                        <h1><?php _e( 'Users', 'buddypress' ); ?>
    18451845
    18461846                                <?php if ( current_user_can( 'create_users' ) ) : ?>
    18471847
    1848                                         <a href="user-new.php" class="add-new-h2"><?php echo esc_html_x( 'Add New', 'user', 'buddypress' ); ?></a>
     1848                                        <a href="user-new.php" class="page-title-action"><?php echo esc_html_x( 'Add New', 'user', 'buddypress' ); ?></a>
    18491849
    18501850                                <?php elseif ( is_multisite() && current_user_can( 'promote_users' ) ) : ?>
    18511851
    1852                                         <a href="user-new.php" class="add-new-h2"><?php echo esc_html_x( 'Add Existing', 'user', 'buddypress' ); ?></a>
     1852                                        <a href="user-new.php" class="page-title-action"><?php echo esc_html_x( 'Add Existing', 'user', 'buddypress' ); ?></a>
    18531853
    18541854                                <?php endif;
    18551855
    class BP_Members_Admin { 
    18581858                                }
    18591859
    18601860                                ?>
    1861                         </h2>
     1861                        </h1>
    18621862
    18631863                        <?php // Display each signups on its own row ?>
    18641864                        <?php $bp_members_signup_list_table->views(); ?>
    class BP_Members_Admin { 
    19621962
    19631963                <div class="wrap">
    19641964                        <?php screen_icon( 'users' ); ?>
    1965                         <h2><?php echo esc_html( $header_text ); ?></h2>
     1965                        <h1><?php echo esc_html( $header_text ); ?></h1>
    19661966                        <p><?php echo esc_html( $helper_text ); ?></p>
    19671967
    19681968                        <ol class="bp-signups-list">
  • src/bp-xprofile/bp-xprofile-admin.php

    diff --git src/bp-xprofile/bp-xprofile-admin.php src/bp-xprofile/bp-xprofile-admin.php
    index 3d15245..30df780 100644
    function xprofile_admin_screen( $message = '', $type = 'error' ) { 
    8686
    8787                <?php screen_icon( 'users' ); ?>
    8888
    89                 <h2>
     89                <h1>
    9090                        <?php _ex( 'Profile Fields', 'Settings page header', 'buddypress'); ?>
    91                         <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>
    92                 </h2>
     91                        <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>
     92                </h1>
    9393
    9494                <form action="" id="profile-field-form" method="post">
    9595