streams/Zotlabs/Widget/Chatroom_list.php

31 lines
622 B
PHP
Raw Normal View History

2017-03-16 04:26:28 +00:00
<?php
namespace Zotlabs\Widget;
2021-12-02 22:33:36 +00:00
use App;
use Zotlabs\Lib\Chatroom;
2021-12-02 23:02:31 +00:00
class Chatroom_list
{
2017-03-16 04:26:28 +00:00
2021-12-02 23:02:31 +00:00
public function widget($arr)
{
2017-03-16 04:26:28 +00:00
2021-12-03 03:01:39 +00:00
if (!App::$profile) {
2021-12-02 23:02:31 +00:00
return '';
2021-12-03 03:01:39 +00:00
}
2017-03-16 04:26:28 +00:00
2021-12-02 23:02:31 +00:00
$r = Chatroom::roomlist(App::$profile['profile_uid']);
2017-03-16 04:26:28 +00:00
2021-12-02 23:02:31 +00:00
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')
));
}
}
2017-03-16 04:26:28 +00:00
}