streams/Zotlabs/Widget/Chatroom_members.php

16 lines
251 B
PHP
Raw Normal View History

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