streams/Zotlabs/Widget/Chatroom_members.php

17 lines
291 B
PHP
Raw Normal View History

2017-03-16 04:26:28 +00:00
<?php
namespace Zotlabs\Widget;
2021-12-02 23:02:31 +00:00
class Chatroom_members
{
2017-03-16 04:26:28 +00:00
2021-12-02 23:02:31 +00:00
// The actual contents are filled in via AJAX
2017-03-16 04:26:28 +00:00
2021-12-02 23:02:31 +00:00
public function widget()
{
return replace_macros(get_markup_template('chatroom_members.tpl'), array(
'$header' => t('Chat Members')
));
}
2017-03-16 04:26:28 +00:00
}