diff options
author | zotlabs <mike@macgirvin.com> | 2017-03-15 21:26:28 -0700 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-03-29 11:57:00 +0200 |
commit | 0908da95298bdd7dd96dcb45ac490f8e7aa73a8e (patch) | |
tree | b38469f6a9b0fe3b59aba02a32eed813ba1df7b9 /Zotlabs/Widget/Chatroom_list.php | |
parent | 6e101e458268c0f9b7bf461cea3c31c37b5e3791 (diff) | |
download | volse-hubzilla-0908da95298bdd7dd96dcb45ac490f8e7aa73a8e.tar.gz volse-hubzilla-0908da95298bdd7dd96dcb45ac490f8e7aa73a8e.tar.bz2 volse-hubzilla-0908da95298bdd7dd96dcb45ac490f8e7aa73a8e.zip |
widgets cont.
Diffstat (limited to 'Zotlabs/Widget/Chatroom_list.php')
-rw-r--r-- | Zotlabs/Widget/Chatroom_list.php | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Zotlabs/Widget/Chatroom_list.php b/Zotlabs/Widget/Chatroom_list.php new file mode 100644 index 000000000..e2aad0e05 --- /dev/null +++ b/Zotlabs/Widget/Chatroom_list.php @@ -0,0 +1,24 @@ +<?php + +namespace Zotlabs\Widget; + +class Chatroom_list { + + function widget($arr) { + + if(! \App::$profile) + return ''; + + $r = \Zotlabs\Lib\Chatroom::roomlist(\App::$profile['profile_uid']); + + if($r) { + return replace_macros(get_markup_template('chatroomlist.tpl'), array( + '$header' => t('Chatrooms'), + '$baseurl' => z_root(), + '$nickname' => \App::$profile['channel_address'], + '$items' => $r, + '$overview' => t('Overview') + )); + } + } +} |