streams/library/ajaxchat/chat/lib/class/CustomAJAXChatInterface.php

21 lines
No EOL
396 B
PHP

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