<!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>[16083] trunk/wp-includes: get_dashboard_url() and get_edit_profile_url().</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/16083">16083</a></dd>
<dt>Author</dt> <dd>ryan</dd>
<dt>Date</dt> <dd>2010-10-29 17:48:53 +0000 (Fri, 29 Oct 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>get_dashboard_url() and get_edit_profile_url().  Determine the appropriate dahboard for a user based on the user's blogs and the current blog.  see <a href="http://trac.wordpress.org/ticket/14696">#14696</a> <a href="http://trac.wordpress.org/ticket/14772">#14772</a></pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpincludesadminbarphp">trunk/wp-includes/admin-bar.php</a></li>
<li><a href="#trunkwpincludeslinktemplatephp">trunk/wp-includes/link-template.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpincludesadminbarphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/admin-bar.php (16082 => 16083)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/admin-bar.php        2010-10-29 16:50:21 UTC (rev 16082)
+++ trunk/wp-includes/admin-bar.php        2010-10-29 17:48:53 UTC (rev 16083)
</span><span class="lines">@@ -82,13 +82,15 @@
</span><span class="cx"> function wp_admin_bar_my_account_menu() {
</span><span class="cx">         global $wp_admin_bar, $user_identity;
</span><span class="cx"> 
</span><ins>+        $user_id = get_current_user_id();
+
</ins><span class="cx">         /* Add the 'My Account' menu */
</span><span class="cx">         $wp_admin_bar-&gt;add_menu( array( 'id' =&gt; 'my-account', 'title' =&gt; $user_identity,  'href' =&gt; admin_url('profile.php'), ) );
</span><span class="cx"> 
</span><span class="cx">         /* Add the &quot;My Account&quot; sub menus */
</span><del>-        $wp_admin_bar-&gt;add_menu( array( 'parent' =&gt; 'my-account', 'title' =&gt; __( 'Edit My Profile' ), 'href' =&gt; admin_url('profile.php'), ) );
</del><ins>+        $wp_admin_bar-&gt;add_menu( array( 'parent' =&gt; 'my-account', 'title' =&gt; __( 'Edit My Profile' ), 'href' =&gt; get_edit_profile_url( $user_id ) ) );
</ins><span class="cx">         if ( is_multisite() )
</span><del>-                $wp_admin_bar-&gt;add_menu( array( 'parent' =&gt; 'my-account', 'title' =&gt; __( 'Global Dashboard' ), 'href' =&gt; admin_url(), ) );
</del><ins>+                $wp_admin_bar-&gt;add_menu( array( 'parent' =&gt; 'my-account', 'title' =&gt; __( 'Dashboard' ), 'href' =&gt; get_dashboard_url( $user_id ), ) );
</ins><span class="cx">         else
</span><span class="cx">                 $wp_admin_bar-&gt;add_menu( array( 'parent' =&gt; 'my-account', 'title' =&gt; __( 'Dashboard' ), 'href' =&gt; admin_url(), ) );
</span><span class="cx">         $wp_admin_bar-&gt;add_menu( array( 'parent' =&gt; 'my-account', 'title' =&gt; __( 'Log Out' ), 'href' =&gt; wp_logout_url(), ) );
</span></span></pre></div>
<a id="trunkwpincludeslinktemplatephp"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/link-template.php (16082 => 16083)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/link-template.php        2010-10-29 16:50:21 UTC (rev 16082)
+++ trunk/wp-includes/link-template.php        2010-10-29 17:48:53 UTC (rev 16083)
</span><span class="lines">@@ -2271,6 +2271,61 @@
</span><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> /**
</span><ins>+ * Get the URL to the user's dashboard.
+ *
+ * If a user does not belong to any sites, the global user dashboard is used.  If the user belongs to the current site,
+ * the dashboard for the current site is returned.  If the user cannot edit the current site, the dashboard to the user's
+ * primary blog is returned.
+ *
+ * @since 3.1.0
+ *
+ * @param int $user_id User ID
+ * @param string $path Optional path relative to the dashboard.  Use only paths known to both blog and user admins.
+ * @param string $scheme The scheme to use. Default is 'admin', which obeys force_ssl_admin() and is_ssl(). 'http' or 'https' can be passed to force those schemes.
+ * @return string Dashboard url link with optional path appended
+ */
+function get_dashboard_url( $user_id, $path = '', $scheme = 'admin' ) {
+        $user_id = (int) $user_id;
+
+        $blogs = get_blogs_of_user( $user_id );
+        if ( empty($blogs) ) {
+                $url = user_admin_url( $path, $scheme );
+        } elseif ( ! is_multisite() ) {
+                $url = admin_url( $path, $scheme );
+        } else {
+                $current_blog = get_current_blog_id();
+                if ( $current_blog  &amp;&amp; in_array($current_blog, array_keys($blogs)) ) {
+                        $url = admin_url( $path, $scheme );
+                } else {
+                        $active = get_active_blog_for_user( $user_id );
+                        if ( $active )
+                                $url = get_admin_url( $active-&gt;blog_id, $path, $scheme );
+                        else
+                                $url = user_admin_url( $path, $scheme );
+                }
+        }
+
+        return apply_filters( 'user_dashboard_url', $url, $user_id, $path, $scheme);
+}
+
+/**
+ * Get the URL to the user's profile editor.
+ *
+ * @since 3.1.0
+ *
+ * @param int $user User ID
+ * @param string $scheme The scheme to use. Default is 'admin', which obeys force_ssl_admin() and is_ssl(). 'http' or 'https' can be passed to force those schemes.
+ * @return string Dashboard url link with optional path appended
+ */
+function get_edit_profile_url( $user, $scheme = 'admin' ) {
+        $user = (int) $user;
+
+        $url = get_dashboard_url( $user, 'profile.php', $scheme );
+
+        return apply_filters( 'edit_profile_url', $url, $user, $scheme);
+}
+
+/**
</ins><span class="cx">  * Output rel=canonical for singular queries
</span><span class="cx">  *
</span><span class="cx">  * @package WordPress
</span></span></pre>
</div>
</div>

</body>
</html>