aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-02-05 19:16:12 -0800
committerfriendica <info@friendica.com>2014-02-05 19:16:12 -0800
commit05a70a8760d705e80c548d96a9d083ab032dbd8b (patch)
tree5ebeac8669021d080eefc11118818ef669e099f9 /include
parentcb6716a644dad4c7c196330cf945de36a000e5a3 (diff)
downloadvolse-hubzilla-05a70a8760d705e80c548d96a9d083ab032dbd8b.tar.gz
volse-hubzilla-05a70a8760d705e80c548d96a9d083ab032dbd8b.tar.bz2
volse-hubzilla-05a70a8760d705e80c548d96a9d083ab032dbd8b.zip
add chatroom links
Diffstat (limited to 'include')
-rw-r--r--include/conversation.php14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/conversation.php b/include/conversation.php
index 633435871..77c7bac70 100644
--- a/include/conversation.php
+++ b/include/conversation.php
@@ -1488,6 +1488,19 @@ function profile_tabs($a, $is_owner=False, $nickname=Null){
'id' => 'files-tab',
);
}
+
+ require_once('include/chat.php');
+ $chats = chatroom_list($a->profile['profile_uid']);
+
+ $tabs[] = array(
+ 'label' => t('Chatrooms') . '(' . count($chats) . ')',
+ 'url' => $a->get_baseurl() . '/chat/' . $nickname,
+ 'sel' => ((argv(0) == 'chat') ? 'active' : ''),
+ 'title' => t('Chatrooms'),
+ 'id' => 'chat-tab',
+ );
+
+
if($is_owner) {
$tabs[] = array(
'label' => t('Events'),
@@ -1506,6 +1519,7 @@ function profile_tabs($a, $is_owner=False, $nickname=Null){
);
}
+
if($is_owner && feature_enabled($a->profile['profile_uid'],'webpages')) {
$tabs[] = array(
'label' => t('Webpages'),