<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!--
#msg dl { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fc0 solid; padding: 6px; }
#msg ul, pre { overflow: auto; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<title>[BuddyPress] [3410] branches/1.2/bp-core/bp-core-adminbar.php: Show &quot;
 Site Admin&quot; menu for administrators on single site installs.</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd>3410</dd>
<dt>Author</dt> <dd>johnjamesjacoby</dd>
<dt>Date</dt> <dd>2010-11-14 04:28:36 +0000 (Sun, 14 Nov 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>Show &quot;Site Admin&quot; menu for administrators on single site installs.</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#branches12bpcorebpcoreadminbarphp">branches/1.2/bp-core/bp-core-adminbar.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="branches12bpcorebpcoreadminbarphp"></a>
<div class="modfile"><h4>Modified: branches/1.2/bp-core/bp-core-adminbar.php (3409 => 3410)</h4>
<pre class="diff"><span>
<span class="info">--- branches/1.2/bp-core/bp-core-adminbar.php        2010-11-14 03:41:51 UTC (rev 3409)
+++ branches/1.2/bp-core/bp-core-adminbar.php        2010-11-14 04:28:36 UTC (rev 3410)
</span><span class="lines">@@ -103,49 +103,66 @@
</span><span class="cx">         if ( !is_user_logged_in() || !function_exists('bp_blogs_install') )
</span><span class="cx">                 return false;
</span><span class="cx"> 
</span><del>-        if ( !$blogs = wp_cache_get( 'bp_blogs_of_user_' . $bp-&gt;loggedin_user-&gt;id . '_inc_hidden', 'bp' ) ) {
-                $blogs = bp_blogs_get_blogs_for_user( $bp-&gt;loggedin_user-&gt;id, true );
-                wp_cache_set( 'bp_blogs_of_user_' . $bp-&gt;loggedin_user-&gt;id . '_inc_hidden', $blogs, 'bp' );
-        }
</del><ins>+        if ( bp_core_is_multisite() ) {
</ins><span class="cx"> 
</span><del>-        echo '&lt;li id=&quot;bp-adminbar-blogs-menu&quot;&gt;&lt;a href=&quot;' . $bp-&gt;loggedin_user-&gt;domain . $bp-&gt;blogs-&gt;slug . '/&quot;&gt;';
</del><ins>+                if ( !$blogs = wp_cache_get( 'bp_blogs_of_user_' . $bp-&gt;loggedin_user-&gt;id . '_inc_hidden', 'bp' ) ) {
+                        $blogs = bp_blogs_get_blogs_for_user( $bp-&gt;loggedin_user-&gt;id, true );
+                        wp_cache_set( 'bp_blogs_of_user_' . $bp-&gt;loggedin_user-&gt;id . '_inc_hidden', $blogs, 'bp' );
+                }
</ins><span class="cx"> 
</span><del>-        _e( 'My Blogs', 'buddypress' );
</del><ins>+                echo '&lt;li id=&quot;bp-adminbar-blogs-menu&quot;&gt;&lt;a href=&quot;' . $bp-&gt;loggedin_user-&gt;domain . $bp-&gt;blogs-&gt;slug . '/&quot;&gt;';
</ins><span class="cx"> 
</span><del>-        echo '&lt;/a&gt;';
-        echo '&lt;ul&gt;';
</del><ins>+                _e( 'My Blogs', 'buddypress' );
</ins><span class="cx"> 
</span><del>-        if ( is_array( $blogs['blogs'] ) &amp;&amp; (int)$blogs['count'] ) {
-                $counter = 0;
-                foreach ( (array)$blogs['blogs'] as $blog ) {
-                        $alt = ( 0 == $counter % 2 ) ? ' class=&quot;alt&quot;' : '';
-                        $site_url = esc_attr( $blog-&gt;siteurl );
</del><ins>+                echo '&lt;/a&gt;';
+                echo '&lt;ul&gt;';
</ins><span class="cx"> 
</span><del>-                        echo '&lt;li' . $alt . '&gt;';
-                        echo '&lt;a href=&quot;' . $site_url . '&quot;&gt;' . esc_html( $blog-&gt;name ) . '&lt;/a&gt;';
</del><ins>+                if ( is_array( $blogs['blogs'] ) &amp;&amp; (int)$blogs['count'] ) {
+                        $counter = 0;
+                        foreach ( (array)$blogs['blogs'] as $blog ) {
+                                $alt = ( 0 == $counter % 2 ) ? ' class=&quot;alt&quot;' : '';
+                                $site_url = esc_attr( $blog-&gt;siteurl );
</ins><span class="cx"> 
</span><del>-                        echo '&lt;ul&gt;';
-                        echo '&lt;li class=&quot;alt&quot;&gt;&lt;a href=&quot;' . $site_url . 'wp-admin/&quot;&gt;' . __( 'Dashboard', 'buddypress' ) . '&lt;/a&gt;&lt;/li&gt;';
-                        echo '&lt;li&gt;&lt;a href=&quot;' . $site_url . 'wp-admin/post-new.php&quot;&gt;' . __( 'New Post', 'buddypress' ) . '&lt;/a&gt;&lt;/li&gt;';
-                        echo '&lt;li class=&quot;alt&quot;&gt;&lt;a href=&quot;' . $site_url . 'wp-admin/edit.php&quot;&gt;' . __( 'Manage Posts', 'buddypress' ) . '&lt;/a&gt;&lt;/li&gt;';
-                        echo '&lt;li&gt;&lt;a href=&quot;' . $site_url . 'wp-admin/edit-comments.php&quot;&gt;' . __( 'Manage Comments', 'buddypress' ) . '&lt;/a&gt;&lt;/li&gt;';
-                        echo '&lt;/ul&gt;';
</del><ins>+                                echo '&lt;li' . $alt . '&gt;';
+                                echo '&lt;a href=&quot;' . $site_url . '&quot;&gt;' . esc_html( $blog-&gt;name ) . '&lt;/a&gt;';
+                                echo '&lt;ul&gt;';
+                                echo '&lt;li class=&quot;alt&quot;&gt;&lt;a href=&quot;' . $site_url . 'wp-admin/&quot;&gt;' . __( 'Dashboard', 'buddypress' ) . '&lt;/a&gt;&lt;/li&gt;';
+                                echo '&lt;li&gt;&lt;a href=&quot;' . $site_url . 'wp-admin/post-new.php&quot;&gt;' . __( 'New Post', 'buddypress' ) . '&lt;/a&gt;&lt;/li&gt;';
+                                echo '&lt;li class=&quot;alt&quot;&gt;&lt;a href=&quot;' . $site_url . 'wp-admin/edit.php&quot;&gt;' . __( 'Manage Posts', 'buddypress' ) . '&lt;/a&gt;&lt;/li&gt;';
+                                echo '&lt;li&gt;&lt;a href=&quot;' . $site_url . 'wp-admin/edit-comments.php&quot;&gt;' . __( 'Manage Comments', 'buddypress' ) . '&lt;/a&gt;&lt;/li&gt;';
+                                echo '&lt;/ul&gt;';
+                                echo '&lt;/li&gt;';
+                                $counter++;
+                        }
+                }
</ins><span class="cx"> 
</span><ins>+                $alt = ( 0 == $counter % 2 ) ? ' class=&quot;alt&quot;' : '';
+
+                if ( bp_blog_signup_enabled() ) {
+                        echo '&lt;li' . $alt . '&gt;';
+                        echo '&lt;a href=&quot;' . $bp-&gt;root_domain . '/' . $bp-&gt;blogs-&gt;slug . '/create/&quot;&gt;' . __( 'Create a Blog!', 'buddypress' ) . '&lt;/a&gt;';
</ins><span class="cx">                         echo '&lt;/li&gt;';
</span><del>-                        $counter++;
</del><span class="cx">                 }
</span><del>-        }
</del><span class="cx"> 
</span><del>-        $alt = ( 0 == $counter % 2 ) ? ' class=&quot;alt&quot;' : '';
</del><ins>+                echo '&lt;/ul&gt;';
+                echo '&lt;/li&gt;';
+        } elseif ( current_user_can( 'administrator' ) ) {
+                $site_url = site_url();
</ins><span class="cx"> 
</span><del>-        if ( bp_blog_signup_enabled() ) {
-                echo '&lt;li' . $alt . '&gt;';
-                echo '&lt;a href=&quot;' . $bp-&gt;root_domain . '/' . $bp-&gt;blogs-&gt;slug . '/create/&quot;&gt;' . __( 'Create a Blog!', 'buddypress' ) . '&lt;/a&gt;';
</del><ins>+                echo '&lt;li id=&quot;bp-adminbar-admin-menu&quot;&gt;&lt;a href=&quot;' . admin_url() . '/&quot;&gt;';
+
+                _e( 'Site Admin', 'buddypress' );
+
+                echo '&lt;/a&gt;';
+                echo '&lt;ul&gt;';
+
+                echo '&lt;li class=&quot;alt&quot;&gt;&lt;a href=&quot;' . admin_url() . '&quot;&gt;' . __( 'Dashboard', 'buddypress' ) . '&lt;/a&gt;&lt;/li&gt;';
+                echo '&lt;li&gt;&lt;a href=&quot;' . admin_url( 'post-new.php' ) . '&quot;&gt;' . __( 'New Post', 'buddypress' ) . '&lt;/a&gt;&lt;/li&gt;';
+                echo '&lt;li class=&quot;alt&quot;&gt;&lt;a href=&quot;' . admin_url( 'edit.php' ) . '&quot;&gt;' . __( 'Manage Posts', 'buddypress' ) . '&lt;/a&gt;&lt;/li&gt;';
+                echo '&lt;li&gt;&lt;a href=&quot;' . admin_url( 'edit-comments.php' ) . '&quot;&gt;' . __( 'Manage Comments', 'buddypress' ) . '&lt;/a&gt;&lt;/li&gt;';
+                echo '&lt;/ul&gt;';
</ins><span class="cx">                 echo '&lt;/li&gt;';
</span><span class="cx">         }
</span><del>-
-        echo '&lt;/ul&gt;';
-        echo '&lt;/li&gt;';
</del><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> // **** &quot;Notifications&quot; Menu *********
</span><span class="lines">@@ -241,10 +258,7 @@
</span><span class="cx"> add_action( 'bp_adminbar_logo', 'bp_adminbar_logo' );
</span><span class="cx"> add_action( 'bp_adminbar_menus', 'bp_adminbar_login_menu', 2 );
</span><span class="cx"> add_action( 'bp_adminbar_menus', 'bp_adminbar_account_menu', 4 );
</span><del>-
-if ( bp_core_is_multisite() )
-        add_action( 'bp_adminbar_menus', 'bp_adminbar_blogs_menu', 6 );
-
</del><ins>+add_action( 'bp_adminbar_menus', 'bp_adminbar_blogs_menu', 6 );
</ins><span class="cx"> add_action( 'bp_adminbar_menus', 'bp_adminbar_notifications_menu', 8 );
</span><span class="cx"> 
</span><span class="cx"> if ( bp_core_is_multisite() )
</span></span></pre>
</div>
</div>

</body>
</html>