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

}