ajax-chat/src/CustomAJAXChatInterface.php

21 lines
437 B
PHP
Raw Permalink Normal View History

2022-02-06 16:08:09 +00:00
<?php
/*
* @package AJAX_Chat
* @author Sebastian Tschan
* @copyright (c) Sebastian Tschan
* @license GNU Affero General Public License
* @link https://blueimp.net/ajax/
*/
class CustomAJAXChatInterface extends CustomAJAXChat {
2022-02-06 16:26:14 +00:00
function initialize() {
// Initialize configuration settings:
$this->initConfig();
2022-02-06 16:08:09 +00:00
2022-02-06 16:26:14 +00:00
// Initialize the DataBase connection:
$this->initDataBaseConnection();
}
2022-02-06 16:08:09 +00:00
}