blob: 0846192ce8f21410281f61b706d9f9988b6318b6 (
plain) (
tree)
|
|
<?php
/**
* * Name: Chatroom members
* * Description: A widget that shows members of a chatroom
* * Requires: chat
*/
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')
));
}
}
|