- 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.
64 lines
2.9 KiB
Smarty
64 lines
2.9 KiB
Smarty
{*<!--
|
|
/*********************************************************************************
|
|
** The contents of this file are subject to the vtiger CRM Public License Version 1.0
|
|
* ("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}
|
|
<div class="container-fluid" id="menuEditorContainer">
|
|
<div class="widget_header row-fluid">
|
|
<div class="span8"><h3>{vtranslate('LBL_MENU_EDITOR', $QUALIFIED_MODULE)}</h3></div>
|
|
</div>
|
|
<hr>
|
|
|
|
<div class="contents">
|
|
<form name="menuEditor" action="index.php" method="post" class="form-horizontal" id="menuEditor">
|
|
<input type="hidden" name="module" value="{$MODULE_NAME}" />
|
|
<input type="hidden" name="action" value="Save" />
|
|
<input type="hidden" name="parent" value="Settings" />
|
|
<div class="row-fluid paddingTop20">
|
|
{assign var=SELECTED_MODULE_IDS value=array()}
|
|
|
|
<select data-placeholder="{vtranslate('LBL_ADD_MENU_ITEM',$QUALIFIED_MODULE)}" id="menuListSelectElement" class="select2 span12" multiple="" data-validation-engine="validate[required]" >
|
|
{foreach key=SELECTED_MODULE item=MODULE_MODEL from=$SELECTED_MODULES}
|
|
{array_push($SELECTED_MODULE_IDS, $MODULE_MODEL->getId())}
|
|
{/foreach}
|
|
|
|
{foreach key=PARENT_NAME item=MODULES_LIST from=$ALL_MODULES}
|
|
<optgroup label='{vtranslate("LBL_$PARENT_NAME", $QUALIFIED_MODULE)}'>
|
|
{foreach key=MODULE_NAME item=MODULE_MODEL from=$MODULES_LIST}
|
|
{assign var=TABID value=$MODULE_MODEL->getId()}
|
|
<option value="{$TABID}" {if in_array($TABID, $SELECTED_MODULE_IDS)} selected {/if}>
|
|
{vtranslate($MODULE_NAME)}</option>
|
|
{/foreach}
|
|
</optgroup>
|
|
{/foreach}
|
|
</select>
|
|
</div>
|
|
<div class="row-fluid paddingTop20">
|
|
<div class="notification span12">
|
|
<div class="alert alert-info">
|
|
<div class="padding1per"><i class="icon-info-sign" style="margin-top:2px"></i>
|
|
<span style="margin-left: 2%">{vtranslate('LBL_MENU_EDITOR_MESSAGE', $QUALIFIED_MODULE)}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row-fluid paddingTop20">
|
|
<div class=" span6">
|
|
<button class="btn btn-success hide pull-right" type="submit" name="saveMenusList">
|
|
<strong>{vtranslate('LBL_SAVE', $QUALIFIED_MODULE)}</strong>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<input type="hidden" name="selectedModulesList" value='' />
|
|
<input type="hidden" name="topMenuIdsList" value='{ZEND_JSON::encode($SELECTED_MODULE_IDS)}' />
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{/strip} |