add ajaxchat library - needs a lot of integration work to handle decentralisation (e.g. chatroom@website) and zotid w/permissions (e.g. ACL controlled chatrooms); we can also rip out a lot of stuff we don't need.

This commit is contained in:
friendica
2014-01-18 23:49:39 -08:00
parent 3f7032e542
commit 724ad45056
197 changed files with 24150 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<?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();
}
}
?>