aboutsummaryrefslogblamecommitdiffstats
path: root/library/ajaxchat/chat/lib/class/CustomAJAXChatInterface.php
blob: a950739c5e023076a01c2213de4fa13ef6dff2d5 (plain) (tree)




















                                                      
<?php
/*
 * @package AJAX_Chat
 * @author Sebastian Tschan
 * @copyright (c) Sebastian Tschan
 * @license Modified MIT License
 * @link https://blueimp.net/ajax/
 */

class CustomAJAXChatInterface extends CustomAJAXChat {

	function initialize() {
		// Initialize configuration settings:
		$this->initConfig();

		// Initialize the DataBase connection:
		$this->initDataBaseConnection();
	}

}
?>