ajax-chat/public/lib/class/CustomAJAXChatShoutBox.php
2022-02-06 17:08:09 +01:00

25 lines
537 B
PHP

<?php
/*
* @package AJAX_Chat
* @author Sebastian Tschan
* @copyright (c) Sebastian Tschan
* @license GNU Affero General Public License
* @link https://blueimp.net/ajax/
*/
class CustomAJAXChatShoutBox extends CustomAJAXChat {
function initialize() {
// Initialize configuration settings:
$this->initConfig();
}
function getShoutBoxContent() {
$template = new AJAXChatTemplate($this, AJAX_CHAT_PATH.'lib/template/shoutbox.html');
// Return parsed template content:
return $template->getParsedContent();
}
}
?>