Files
crm.clientright.ru/modules/ITS4YouLibrary/limonade-master/lib/limonade/views/_debug.html.php
Fedor ac7467f0b4 Major CRM updates: AI Assistant, Court Status API, S3 integration improvements, and extensive file storage system
- 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.
2025-10-16 11:17:21 +03:00

37 lines
1.3 KiB
PHP

<?php if(option('env') > ENV_PRODUCTION && option('debug')): ?>
<?php if(!$is_http_error): ?>
<p>[<?php echo error_type($errno)?>]
<?php echo $errstr?> (in <strong><?php echo $errfile?></strong> line <strong><?php echo $errline?></strong>)
</p>
<?php endif; ?>
<?php if($debug_args = set('_lim_err_debug_args')): ?>
<h2 id="debug-arguments">Debug arguments</h2>
<pre><code><?php echo h(print_r($debug_args, true))?></code></pre>
<?php endif; ?>
<h2 id="limonade-options">Options</strong></h2>
<pre><code><?php echo h(print_r(option(), true))?></code></pre>
<p class="bt top"><a href="#header">[ &#x2191; ]</a></p>
<h2 id="environment">Environment</h2>
<pre><code><?php echo h(print_r(env(), true))?></code></pre>
<p class="bt top"><a href="#header">[ &#x2191; ]</a></p>
<h2 id="debug-backtrace">Backtrace</h2>
<pre><code><?php echo h(print_r(debug_backtrace(), true))?></code></pre>
<p class="bt top"><a href="#header">[ &#x2191; ]</a></p>
<div id="debug-menu">
<?php if($debug_args = set('_lim_err_debug_args')): ?>
<a href="#debug-arguments">Debug arguments</a> |
<?php endif; ?>
<a href="#limonade-options">Options</a> |
<a href="#environment">Environment</a> |
<a href="#debug-backtrace">Backtrace</a> |
<a href="#header">[ &#x2191; ]</a>
</div>
<?php endif; ?>