- 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.
59 lines
3.1 KiB
Smarty
59 lines
3.1 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.
|
|
************************************************************************************}
|
|
{* modules/Settings/MenuEditor/views/Index.php *}
|
|
|
|
{* START YOUR IMPLEMENTATION FROM BELOW. Use {debug} for information *}
|
|
{assign var=APP_IMAGE_MAP value=Vtiger_MenuStructure_Model::getAppIcons()}
|
|
<div class="listViewPageDiv detailViewContainer col-sm-12" id="listViewContent">
|
|
<div class="col-sm-12">
|
|
<div class="row">
|
|
<div class=" vt-default-callout vt-info-callout">
|
|
<h4 class="vt-callout-header"><span class="fa fa-info-circle"></span>{vtranslate('LBL_INFO', $QUALIFIED_MODULE_NAME)}</h4>
|
|
<p>{vtranslate('LBL_MENU_EDITOR_INFO', $QUALIFIED_MODULE_NAME)}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-12" style="margin-top: 10px;">
|
|
<div class="row" style="margin-left: -28px;">
|
|
{assign var=APP_LIST value=Vtiger_MenuStructure_Model::getAppMenuList()}
|
|
{foreach item=APP_IMAGE key=APP_NAME from=$APP_IMAGE_MAP name=APP_MAP}
|
|
{if !in_array($APP_NAME, $APP_LIST)} {continue} {/if}
|
|
<div class="col-lg-2{if $smarty.foreach.APP_MAP.index eq 0 or count($APP_LIST) eq 1}{/if}">
|
|
<div class="menuEditorItem app-{$APP_NAME}" data-app-name="{$APP_NAME}">
|
|
<span class="fa {$APP_IMAGE}"></span>
|
|
{assign var=TRANSLATED_APP_NAME value={vtranslate("LBL_$APP_NAME")}}
|
|
<div class="textOverflowEllipsis" title="{$TRANSLATED_APP_NAME}">{$TRANSLATED_APP_NAME}</div>
|
|
</div>
|
|
<div class="sortable appContainer" data-appname="{$APP_NAME}">
|
|
{foreach key=moduleName item=moduleModel from=$APP_MAPPED_MODULES[$APP_NAME]}
|
|
<div class="modules noConnect" data-module="{$moduleName}">
|
|
<i data-appname="{$APP_NAME}" class="fa fa-times pull-right whiteIcon menuEditorRemoveItem" style="margin: 5%;padding-top:15px;"></i>
|
|
<div class="menuEditorItem menuEditorModuleItem">
|
|
<span class="pull-left marginRight10px marginTop5px">
|
|
<img class="alignMiddle cursorDrag" src="{vimage_path('drag.png')}"/>
|
|
</span>
|
|
{assign var='translatedModuleLabel' value=vtranslate($moduleModel->get('label'),$moduleName )}
|
|
<span>
|
|
<span class="marginRight10px marginTop5px pull-left">{$moduleModel->getModuleIcon()}</span>
|
|
</span>
|
|
<div class="textOverflowEllipsis marginTop5px textAlignLeft" title="{$translatedModuleLabel}">{$translatedModuleLabel}</div>
|
|
</div>
|
|
</div>
|
|
{/foreach}
|
|
<div class="menuEditorItem menuEditorModuleItem menuEditorAddItem" data-appname="{$APP_NAME}">
|
|
<i class="fa fa-plus pull-left marginTop5px"></i>
|
|
<div class="marginTop10px">{vtranslate('LBL_SELECT_HIDDEN_MODULE', $QUALIFIED_MODULE_NAME)}</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{/foreach}
|
|
</div>
|
|
</div>
|
|
</div>
|