diff options
author | friendica <info@friendica.com> | 2014-02-05 19:16:12 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-02-05 19:16:12 -0800 |
commit | 05a70a8760d705e80c548d96a9d083ab032dbd8b (patch) | |
tree | 5ebeac8669021d080eefc11118818ef669e099f9 /mod | |
parent | cb6716a644dad4c7c196330cf945de36a000e5a3 (diff) | |
download | volse-hubzilla-05a70a8760d705e80c548d96a9d083ab032dbd8b.tar.gz volse-hubzilla-05a70a8760d705e80c548d96a9d083ab032dbd8b.tar.bz2 volse-hubzilla-05a70a8760d705e80c548d96a9d083ab032dbd8b.zip |
add chatroom links
Diffstat (limited to 'mod')
-rw-r--r-- | mod/chat.php | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/mod/chat.php b/mod/chat.php index e79973aef..e3725830c 100644 --- a/mod/chat.php +++ b/mod/chat.php @@ -155,6 +155,15 @@ function chat_content(&$a) { require_once('include/widgets.php'); - return widget_chatroom_list(array()); + $o = replace_macros(get_markup_template('chatrooms.tpl'), array( + '$header' => sprintf( t('%1$s\'s Chatrooms'), $a->profile['name']), + '$baseurl' => z_root(), + '$nickname' => $channel['channel_address'], + '$rooms' => widget_chatroom_list(array()), + '$newroom' => t('New Chatroom'), + '$is_owner' => ((local_user() && local_user() == $a->profile['profile_uid']) ? 1 : 0) + )); + + return $o; }
\ No newline at end of file |