streams/Zotlabs/Widget/Chatroom_members.php
2021-12-03 14:01:39 +11:00

16 lines
291 B
PHP

<?php
namespace Zotlabs\Widget;
class Chatroom_members
{
// The actual contents are filled in via AJAX
public function widget()
{
return replace_macros(get_markup_template('chatroom_members.tpl'), array(
'$header' => t('Chat Members')
));
}
}