aboutsummaryrefslogblamecommitdiffstats
path: root/Zotlabs/Widget/Chatroom_members.php
blob: 0846192ce8f21410281f61b706d9f9988b6318b6 (plain) (tree)
1
2
3
4
5
6
7
8

     





                                                             












                                                                                         
<?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')
		));
	}

}