- 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.
58 lines
2.8 KiB
Smarty
58 lines
2.8 KiB
Smarty
{*+**********************************************************************************
|
|
* The contents of this file are subject to the vtiger CRM Public License Version 1.1
|
|
* ("License"); You may not use this file except in compliance with the License
|
|
* The Original Code is: vtiger CRM Open Source
|
|
* The Initial Developer of the Original Code is vtiger.
|
|
* Portions created by vtiger are Copyright (C) vtiger.
|
|
* All Rights Reserved.
|
|
************************************************************************************}
|
|
|
|
{strip}
|
|
{assign var=APP_ARRAY value=Vtiger_MenuStructure_Model::getAppMenuList()}
|
|
<div class="modal-dialog modal-lg addModuleContainer">
|
|
<div class="modal-content">
|
|
<input id="appname" type="hidden" name="appname" value="{$SELECTED_APP_NAME}" />
|
|
<div class="modal-header" >
|
|
<div class="clearfix">
|
|
<div class="pull-right">
|
|
<button type="button" class="close" aria-label="Close" data-dismiss="modal" style="color: inherit;">
|
|
<span aria-hidden="true" class='fa fa-close'></span>
|
|
</button>
|
|
</div>
|
|
<div class="btn-group">
|
|
{assign var=APP_SELECTED_LABEL value="LBL_SELECT_`$SELECTED_APP_NAME`_MODULES"}
|
|
<h4 class="pull-left textOverflowEllipsis" style="word-break: break-all;max-width: 95%;">{vtranslate($APP_SELECTED_LABEL, $QUALIFIED_MODULE)} </h4>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="modal-body form-horizontal">
|
|
{foreach item=APP_NAME from=$APP_ARRAY}
|
|
{assign var=HIDDEN_MODULES value=Settings_MenuEditor_Module_Model::getHiddenModulesForApp($APP_NAME)}
|
|
<div class="row modulesContainer {if $APP_NAME neq $SELECTED_APP_NAME} hide {/if}" data-appname="{$APP_NAME}">
|
|
<div class="col-lg-12 col-md-12 col-sm-12">
|
|
{if count($HIDDEN_MODULES) gt 0}
|
|
{foreach item=MODULE_NAME from=$HIDDEN_MODULES}
|
|
<span class="btn-group" style="margin-bottom: 10px; margin-left: 25px; margin-right: -15px;">
|
|
<buttton class="btn addButton btn-default module-buttons addModule" data-module="{$MODULE_NAME}" style="text-transform: inherit;margin-right:15px">{vtranslate($MODULE_NAME, $MODULE_NAME)}
|
|
<i class="fa fa-plus"></i>
|
|
</buttton>
|
|
</span>
|
|
{/foreach}
|
|
{else}
|
|
<h5>
|
|
<center>
|
|
{*SalesPaltform.ru begin*}
|
|
{* {vtranslate('LBL_NO', $QUALIFIED_MODULE)} {vtranslate('LBL_MODULES', $QUALIFIED_MODULE)} {vtranslate('LBL_FOUND', $QUALIFIED_MODULE)}.</h4> *}
|
|
{vtranslate('LBL_NO_FOUND_MODULES', $QUALIFIED_MODULE)}.
|
|
{*SalesPaltform.ru end*}
|
|
</center>
|
|
</h5>
|
|
{/if}
|
|
</div>
|
|
</div>
|
|
{/foreach}
|
|
</div>
|
|
{include file="ModalFooter.tpl"|vtemplate_path:$QUALIFIED_MODULE}
|
|
</div>
|
|
</div>
|
|
{/strip} |