- Added comprehensive AI Assistant system (aiassist/ directory): * Vector search and embedding capabilities * Typebot proxy integration * Elastic search functionality * Message classification and chat history * MCP proxy for external integrations - Implemented Court Status API (GetCourtStatus.php): * Real-time court document status checking * Integration with external court systems * Comprehensive error handling and logging - Enhanced S3 integration: * Improved file backup system with metadata * Batch processing capabilities * Enhanced error logging and recovery * Copy operations with URL fixing - Added Telegram contact creation API - Improved error logging across all modules - Enhanced callback system for AI responses - Extensive backup file storage with timestamps - Updated documentation and README files - File storage improvements: * Thousands of backup files with proper metadata * Fix operations for broken file references * Project-specific backup and recovery systems * Comprehensive file integrity checking Total: 26,461+ files added/modified including AWS SDK, vendor dependencies, and extensive backup system.
61 lines
1.8 KiB
PHP
61 lines
1.8 KiB
PHP
<?php
|
|
/**
|
|
This File was developed by Stefan Warnat <vtiger@stefanwarnat.de>
|
|
|
|
It belongs to the Workflow Designer and must not be distributed without complete extension
|
|
**/
|
|
if(defined("WF_CONSTANTS_INIT")) {
|
|
return;
|
|
}
|
|
|
|
if(!defined('DEMO_MODE')) {
|
|
define("DEMO_MODE", false);
|
|
}
|
|
|
|
if(!defined('E_EXPRESSION_ERROR')) {
|
|
define("E_EXPRESSION_ERROR", 20000);
|
|
}
|
|
if(!defined('E_NONBREAK_ERROR')) {
|
|
define("E_NONBREAK_ERROR", 20001);
|
|
}
|
|
|
|
/**
|
|
* Workflow2 File-Constants to centralize Updates
|
|
*/
|
|
define("WF_CONSTANTS_INIT", true);
|
|
|
|
define('CRYPT_PATH', dirname(__FILE__) . DIRECTORY_SEPARATOR . "lib" . DIRECTORY_SEPARATOR . "Workflow" . DIRECTORY_SEPARATOR . "SWExtension" . DIRECTORY_SEPARATOR);
|
|
|
|
define("PATH_CONTEXTMENU", "modules/Workflow2/views/resources/js/jquery-contextMenu-1.6.5");
|
|
|
|
//define("FILE_JSPLUMB", "modules/Workflow2/views/resources/js/jsPlumb-1.7.5.min.js");
|
|
define("FILE_JSPLUMB", "modules/Workflow2/views/resources/js/jsPlumb-2.4.2.min.js");
|
|
|
|
define("PATH_CKEDITOR", "modules/Workflow2/views/resources/js/ckeditor_4.9.1/");
|
|
|
|
define("MAX_CONNECTIONS", 50);
|
|
|
|
define("PATH_JQPLOT", "modules/Workflow2/views/resources/js/jquery.jqplot.1.0.8");
|
|
|
|
define("PATH_CODEMIRROR", "modules/Workflow2/js/codemirror/codemirror-5.38.0");
|
|
|
|
define("UNDERSCOREJS", "modules/Workflow2/views/resources/js/underscore-1.8.3.js");
|
|
|
|
define("PATH_MODULE", "modules/Workflow2");
|
|
|
|
define("MODULE_ROOTPATH", dirname(__FILE__));
|
|
|
|
define("WFD_TMP", vglobal('root_directory') . DS . 'test' . DS . 'Workflow2' . DS);
|
|
|
|
|
|
if(!defined('OAUTH_CALLBACK_ADD')) {
|
|
define('OAUTH_CALLBACK_ADD', 'https://oauth.redoo-networks.com/a.php');
|
|
}
|
|
|
|
if(!defined('OAUTH_CALLBACK_REQUEST')) {
|
|
define('OAUTH_CALLBACK_REQUEST', 'https://oauth.redoo-networks.com/request.php');
|
|
}
|
|
|
|
if(!defined('OAUTH_CALLBACK_REFRESH')) {
|
|
define('OAUTH_CALLBACK_REFRESH', 'https://oauth.redoo-networks.com/refresh.php');
|
|
} |