Files
crm.clientright.ru/layouts/v7/modules/Users/UsersSidebar.tpl
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

54 lines
2.4 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=SETTINGS_MENU_LIST value=Settings_Vtiger_Module_Model::getSettingsMenuListForNonAdmin()}
<div class="settingsgroup">
<div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true">
<div class="settingsgroup-panel panel panel-default">
{foreach item=BLOCK_MENUS key=BLOCK_NAME from=$SETTINGS_MENU_LIST}
{assign var=NUM_OF_MENU_ITEMS value= $BLOCK_MENUS|@sizeof}
{if $NUM_OF_MENU_ITEMS gt 0}
<div id="{$BLOCK_NAME}_accordion" class="app-nav" role="tab">
<div class="app-settings-accordion">
<div class="settingsgroup-accordion">
<a data-toggle="collapse" data-parent="#accordion" href="#{$BLOCK_NAME}">
<i class="fa {if $ACTIVE_BLOCK['block'] eq $BLOCK_NAME} fa-angle-down {else} fa-angle-right {/if}"></i>
&nbsp;<span>{vtranslate($BLOCK_NAME,$QUALIFIED_MODULE)}</span>
</a>
</div>
</div>
</div>
<div id="{$BLOCK_NAME}" class="panel-collapse collapse {if $ACTIVE_BLOCK['block'] eq $BLOCK_NAME} in {/if}">
<ul class="list-group">
{foreach item=URL key=MENU from=$BLOCK_MENUS}
{assign var=MENU_URL value='#'}
{assign var=MENU_LABEL value=$MENU}
{if $MENU eq 'My Preferences'}
{assign var=MENU_URL value=$USER_MODEL->getPreferenceDetailViewUrl()}
{elseif $MENU eq 'Calendar Settings'}
{assign var=MENU_URL value=$USER_MODEL->getCalendarSettingsDetailViewUrl()}
{elseif $MENU === $URL}
{if $SETTINGS_MENU_ITEMS[$MENU]}
{assign var=MENU_URL value=$SETTINGS_MENU_ITEMS[$MENU]->getURL()}
{/if}
{elseif is_string($URL)}
{assign var=MENU_URL value=$URL}
{/if}
<li><a href="{$MENU_URL}" class="menuItemLabel {if $ACTIVE_BLOCK['menu'] eq $MENU} settingsgroup-menu-color {/if}">{vtranslate($MENU_LABEL,$QUALIFIED_MODULE)}</a></li>
{/foreach}
</ul>
</div>
{/if}
{/foreach}
</div>
</div>
</div>
{/strip}