diff options
author | tommy tomson <thomas.bierey@gmx.de> | 2012-03-26 18:54:57 +0200 |
---|---|---|
committer | tommy tomson <thomas.bierey@gmx.de> | 2012-03-26 18:54:57 +0200 |
commit | 2d834d0f45125650a40363a4fb41afd05fc8de1e (patch) | |
tree | 25abf9edc4c47c4ee468627eb75a3a0dc6508ded /view/theme/diabook-blue/theme.php | |
parent | f1d15d8884828bc491acb0c79d1fa73d5998449f (diff) | |
download | volse-hubzilla-2d834d0f45125650a40363a4fb41afd05fc8de1e.tar.gz volse-hubzilla-2d834d0f45125650a40363a4fb41afd05fc8de1e.tar.bz2 volse-hubzilla-2d834d0f45125650a40363a4fb41afd05fc8de1e.zip |
add "similar interrest", "Friend Suggestions" and "Invite Friends" to right_aside, fixes in css
Diffstat (limited to 'view/theme/diabook-blue/theme.php')
-rwxr-xr-x | view/theme/diabook-blue/theme.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/view/theme/diabook-blue/theme.php b/view/theme/diabook-blue/theme.php index 322e16329..bbda4f103 100755 --- a/view/theme/diabook-blue/theme.php +++ b/view/theme/diabook-blue/theme.php @@ -135,6 +135,16 @@ function diabook_blue_community_info(){ else {a_funct()}})()" ; $aside['$fostitJS'] = $fostitJS; + + //nav FIND FRIENDS + + $nv = array(); + $nv['directory'] = Array('directory', t('Directory'), "", ""); + $nv['match'] = Array('match', t('Similar Interests'), "", ""); + $nv['suggest'] = Array('suggest', t('Friend Suggestions'), "", ""); + $nv['invite'] = Array('invite', t('Invite Friends'), "", ""); + + $aside['$nv'] = $nv; //Community Page $page = '<div id="page-sidebar-right_aside" class="widget"> @@ -196,6 +206,7 @@ if ($a->argv[0] === "network" && local_user()){ $ps = array('usermenu'=>array()); $ps['usermenu']['status'] = Array('profile/' . $a->user['nickname'], t('Home'), "", t('Your posts and conversations')); $ps['usermenu']['profile'] = Array('profile/' . $a->user['nickname']. '?tab=profile', t('Profile'), "", t('Your profile page')); + $ps['usermenu']['contacts'] = Array('contacts' , t('Contacts'), "", t('Your contacts')); $ps['usermenu']['photos'] = Array('photos/' . $a->user['nickname'], t('Photos'), "", t('Your photos')); $ps['usermenu']['events'] = Array('events/', t('Events'), "", t('Your events')); $ps['usermenu']['notes'] = Array('notes/', t('Personal notes'), "", t('Your personal photos')); |