aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Widget/Chatroom_members.php
blob: 0846192ce8f21410281f61b706d9f9988b6318b6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?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')
		));
	}

}