mirror of
https://framagit.org/hubzilla/core.git
synced 2026-06-21 00:52:33 -04:00
22 lines
374 B
PHP
22 lines
374 B
PHP
<?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')
|
|
));
|
|
}
|
|
|
|
}
|