Skip to:
Content

BuddyPress.org

Ticket #216: adminbar.patch

File adminbar.patch, 5.5 KB (added by jeffry.degrande, 16 years ago)
  • bp-friends.php

     
    9494        $friends_link = $bp['loggedin_domain'] . $bp['friends']['slug'] . '/';
    9595       
    9696        /* Add the subnav items to the friends nav item */
    97         bp_core_add_subnav_item( $bp['friends']['slug'], 'my-friends', __('My Friends', 'buddypress'), $friends_link, 'friends_screen_my_friends' );
     97        bp_core_add_subnav_item( $bp['friends']['slug'], 'friends-my-friends', __('My Friends', 'buddypress'), $friends_link, 'friends_screen_my_friends' );
    9898        bp_core_add_subnav_item( $bp['friends']['slug'], 'requests', __('Requests', 'buddypress'), $friends_link, 'friends_screen_requests', false, bp_is_home() );
    9999        //bp_core_add_subnav_item( $bp['friends']['slug'], 'invite-friend', __('Invite Friends', 'buddypress'), $friends_link, 'friends_screen_invite_friends' );
    100100       
     
    567567add_action( 'delete_user', 'bp_core_remove_data', 1 );
    568568
    569569
    570 ?>
    571  No newline at end of file
     570?>
  • bp-activity.php

     
    169169       
    170170        /* Add the subnav items to the activity nav item */
    171171        bp_core_add_subnav_item( $bp['activity']['slug'], 'just-me', __('Just Me', 'buddypress'), $activity_link, 'bp_activity_screen_my_activity' );
    172         bp_core_add_subnav_item( $bp['activity']['slug'], 'my-friends', __('My Friends', 'buddypress'), $activity_link, 'bp_activity_screen_friends_activity', false, bp_is_home() );
     172        bp_core_add_subnav_item( $bp['activity']['slug'], 'activity-my-friends', __('My Friends', 'buddypress'), $activity_link, 'bp_activity_screen_friends_activity', false, bp_is_home() );
    173173       
    174174        if ( $bp['current_component'] == $bp['activity']['slug'] ) {
    175175                if ( bp_is_home() ) {
     
    281281}
    282282
    283283
    284 ?>
    285  No newline at end of file
     284?>
  • bp-core/css/admin-bar.css

     
    210210        height: 55px !important;
    211211}
    212212
    213 #wp-admin-bar ul li#notifications_menu a span {
     213#wp-admin-bar ul li#bp-admin-notifications_menu a span {
    214214        background: #fff !important;
    215215        padding: 0 6px !important;
    216216        color: #555 !important;
     
    220220        -khtml-border-radius: 2px !important;
    221221        -webkit-border-radius: 2px !important;
    222222        margin-left: 2px !important;
    223 }
    224  No newline at end of file
     223}
  • bp-core/bp-core-adminbar.php

     
    5555                        $alt = ( $counter % 2 == 0 ) ? ' class="alt"' : '';
    5656                       
    5757                        echo '<li' . $alt . '>';
    58                         echo '<a id="' . $nav_item['css_id'] . '" href="' . $nav_item['link'] . '">' . $nav_item['name'] . '</a>';
     58                        echo '<a id="' . 'bp-admin-'.$nav_item['css_id'] . '" href="' . $nav_item['link'] . '">' . $nav_item['name'] . '</a>';
    5959
    6060                        if ( is_array( $bp['bp_options_nav'][$nav_item['css_id']] ) ) {
    6161                                echo '<ul>';
    6262                                $sub_counter = 0;
    6363                                foreach( $bp['bp_options_nav'][$nav_item['css_id']] as $subnav_item ) {
    6464                                        $alt = ( $sub_counter % 2 == 0 ) ? ' class="alt"' : '';
    65                                         echo '<li' . $alt . '><a id="' . $subnav_item['css_id'] . '" href="' . $subnav_item['link'] . '">' . $subnav_item['name'] . '</a></li>';                               
     65                                        echo '<li' . $alt . '><a id="' . 'bp-admin-'. $subnav_item['css_id'] . '" href="' . $subnav_item['link'] . '">' . $subnav_item['name'] . '</a></li>';                           
    6666                                        $sub_counter++;
    6767                                }
    6868                                echo '</ul>';
     
    7575       
    7676                $alt = ( $counter % 2 == 0 ) ? ' class="alt"' : '';
    7777       
    78                 echo '<li' . $alt . '><a id="logout" href="' . site_url() . '/wp-login.php?action=logout">' . __('Log Out', 'buddypress') . '</a></li>';
     78                echo '<li' . $alt . '><a id="bp-admin-logout" href="' . site_url() . '/wp-login.php?action=logout">' . __('Log Out', 'buddypress') . '</a></li>';
    7979                echo '</ul>';
    8080                echo '</li>';
    8181        }
     
    158158        if ( is_user_logged_in() ) {
    159159                global $bp;
    160160               
    161                 echo '<li id="notifications_menu"><a href="' . $bp['loggedin_domain'] . '">';
     161                echo '<li id="bp-admin-notifications_menu"><a href="' . $bp['loggedin_domain'] . '">';
    162162                _e( 'Notifications', 'buddypress' );
    163163       
    164164                if ( $notifications = bp_core_get_notifications_for_user( $bp['loggedin_userid']) ) { ?>
     
    232232
    233233                        <?php if ( function_exists('bp_blogs_install') ) : ?>
    234234                        <li><a href="<?php echo $bp['root_domain'] . '/' . $bp['blogs']['slug'] . '/?random-blog' ?>"><?php _e( 'Random Blog', 'buddypress' ) ?></a></li>
    235                        
    236235                        <?php endif; ?>
    237236                </ul>
    238237        </li>
    239238        <?php
    240239       
    241         echo '</ul>';
    242         echo '</div>';
     240        // echo '</ul>';
     241        // echo '</div>';
    243242
    244243        $doing_admin_bar = false;
    245244}
     
    254253
    255254add_action( 'wp_footer', 'bp_core_admin_bar' );
    256255
    257 ?>
    258  No newline at end of file
     256?>
  • bp-core/bp-core-templatetags.php

     
    4949                }
    5050               
    5151                /* echo out the final list item */
    52                 echo '<li' . $selected . '><a id="' . $nav_item['css_id'] . '" href="' . $nav_item['link'] . '">' . $nav_item['name'] . '</a></li>';
     52                echo '<li' . $selected . '><a id="' . 'user-' . $nav_item['css_id'] . '" href="' . $nav_item['link'] . '">' . $nav_item['name'] . '</a></li>';
    5353        }
    5454       
    5555        /* Always add a log out list item to the end of the navigation */