global $CONFIG;
// add Friends to tools menu - if profile mod is running
+ // now added to toolbar
+ /*
if ( isloggedin() && is_plugin_enabled('profile') ) {
$user = get_loggedin_user();
add_menu(elgg_echo('friends'), $CONFIG->wwwroot . "pg/friends/" . $user->username, array(), 'core:friends');
}
+ */
register_page_handler('friends', 'friends_page_handler');
register_page_handler('friendsof', 'friends_of_page_handler');
#elgg_topbar_contents .log_out a:hover {
color:#71cbff;
}
+#elgg_topbar_contents a.myfriends {
+ background:transparent url(<?php echo $vars['url']; ?>_graphics/elgg_sprites.png) no-repeat left -297px;
+ margin-right:30px;
+ text-indent: -900em;
+ width:36px;
+}
+#elgg_topbar_contents a.myfriends:hover {
+ background-position: left -337px;
+}
#elgg_topbar_contents a.settings {
background:transparent url(<?php echo $vars['url']; ?>_graphics/elgg_sprites.png) no-repeat -300px -41px;
padding-left:20px !important;
// enable elgg topbar extending
echo elgg_view('elgg_topbar/extend', $vars);
+
+ // add Friends to top toolbar - if profile mod is running
+ if ( is_plugin_enabled('profile') ) {
+ $user = get_loggedin_user();
+ echo "<a class='myfriends' href=\"".$CONFIG->wwwroot . "pg/friends/" . $user->username."\" title=\"".elgg_echo('friends')."\">".elgg_echo('friends')."</a>";
+ }
?>
-
+
<div class="log_out">
<?php echo elgg_view('output/url', array('href' => "{$vars['url']}action/logout", 'text' => elgg_echo('logout'), 'is_action' => TRUE)); ?>
</div>