- 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.
106 lines
6.0 KiB
Smarty
106 lines
6.0 KiB
Smarty
{*+**********************************************************************************
|
|
* The content of this file is subject to the ITS4YouKanbanView license.
|
|
* ("License"); You may not use this file except in compliance with the License
|
|
* The Initial Developer of the Original Code is IT-Solutions4You s.r.o.
|
|
* Portions created by IT-Solutions4You s.r.o. are Copyright(C) IT-Solutions4You s.r.o.
|
|
* All Rights Reserved.
|
|
************************************************************************************}
|
|
|
|
{strip}
|
|
<div class="col-sm-12 col-xs-12 module-action-bar clearfix coloredBorderTop">
|
|
<div class="module-action-content clearfix {$MODULE}-module-action-content">
|
|
<div class="col-lg-7 col-md-7 module-breadcrumb module-breadcrumb-{$smarty.request.view} transitionsAllHalfSecond">
|
|
<a title="{vtranslate($SOURCE_MODULE_NAME, $SOURCE_MODULE_NAME)}" href='{$SOURCE_MODULE_MODEL->getDefaultUrl()}&app={$SELECTED_MENU_CATEGORY}'>
|
|
<h4 class="module-title pull-left text-uppercase"> {vtranslate($SOURCE_MODULE_NAME, $SOURCE_MODULE_NAME)} </h4>
|
|
</a>
|
|
<p class="current-filter-name filter-name pull-left cursorPointer" title="{vtranslate($MODULE, $MODULE)}">
|
|
<span class="fa fa-angle-right pull-left" aria-hidden="true"></span>
|
|
<a href='{$MODULE_MODEL->getKanbanUrl($SOURCE_MODULE_NAME)}'> {vtranslate($MODULE, $MODULE)} </a>
|
|
</p>
|
|
<p class="current-filter-name filter-name pull-left cursorPointer">
|
|
<span class="fa fa-angle-right pull-left" aria-hidden="true"></span>
|
|
<a href='{$MODULE_MODEL->getKanbanUrl($SOURCE_MODULE_NAME)}'> {if $DEFAULT_CUSTOM_VIEW}{vtranslate($DEFAULT_CUSTOM_VIEW->get('viewname'), $SOURCE_MODULE_NAME)}{else}{vtranslate('All', $SOURCE_MODULE_NAME)}{/if} </a>
|
|
</p>
|
|
</div>
|
|
<div class="col-lg-5 col-md-5 pull-right">
|
|
<div id="appnav" class="navbar-right">
|
|
<ul class="nav navbar-nav">
|
|
{foreach item=BASIC_ACTION from=$MODULE_BASIC_ACTIONS}
|
|
{if $BASIC_ACTION->getLabel() == 'LBL_IMPORT'}
|
|
<li>
|
|
<button id="{$MODULE}_basicAction_{Vtiger_Util_Helper::replaceSpaceWithUnderScores($BASIC_ACTION->getLabel())}" type="button" class="btn addButton btn-default module-buttons"
|
|
{if stripos($BASIC_ACTION->getUrl(), 'javascript:')===0}
|
|
onclick='{$BASIC_ACTION->getUrl()|substr:strlen("javascript:")}'
|
|
{else}
|
|
onclick="Vtiger_Import_Js.triggerImportAction('{$BASIC_ACTION->getUrl()}')"
|
|
{/if}>
|
|
<div class="fa {$BASIC_ACTION->getIcon()}" aria-hidden="true"></div>
|
|
{vtranslate($BASIC_ACTION->getLabel(), $MODULE)}
|
|
</button>
|
|
</li>
|
|
{else}
|
|
<li>
|
|
<button id="{$MODULE}_listView_basicAction_{Vtiger_Util_Helper::replaceSpaceWithUnderScores($BASIC_ACTION->getLabel())}" type="button" class="btn addButton btn-default module-buttons"
|
|
{if stripos($BASIC_ACTION->getUrl(), 'javascript:')===0}
|
|
onclick='{$BASIC_ACTION->getUrl()|substr:strlen("javascript:")}'
|
|
{else}
|
|
onclick='window.location.href = "{$BASIC_ACTION->getUrl()}&app={$SELECTED_MENU_CATEGORY}"'
|
|
{/if}>
|
|
<div class="fa {$BASIC_ACTION->getIcon()}" aria-hidden="true"></div>
|
|
{vtranslate($BASIC_ACTION->getLabel(), $MODULE)}
|
|
</button>
|
|
</li>
|
|
{/if}
|
|
{/foreach}
|
|
{if $MODULE_SETTING_ACTIONS|@count gt 0}
|
|
<li>
|
|
<div class="settingsIcon">
|
|
<button type="button" class="btn btn-default module-buttons dropdown-toggle" data-toggle="dropdown" aria-expanded="false">
|
|
<span class="fa fa-wrench" aria-hidden="true" title="{vtranslate('LBL_SETTINGS', $MODULE)}"></span> {vtranslate('LBL_CUSTOMIZE', 'Reports')} <span class="caret"></span>
|
|
</button>
|
|
<ul class="detailViewSetting dropdown-menu">
|
|
{foreach item=SETTING from=$MODULE_SETTING_ACTIONS}
|
|
<li id="{$MODULE_NAME}_listview_advancedAction_{$SETTING->getLabel()}"><a href={$SETTING->getUrl()}>{vtranslate($SETTING->getLabel(), $MODULE_NAME ,vtranslate($MODULE_NAME, $MODULE_NAME))}</a></li>
|
|
{/foreach}
|
|
</ul>
|
|
</div>
|
|
</li>
|
|
{/if}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{if $FIELDS_INFO neq null}
|
|
<script type="text/javascript">
|
|
var uimeta = (function () {
|
|
var fieldInfo = {$FIELDS_INFO};
|
|
return {
|
|
field: {
|
|
get: function (name, property) {
|
|
if (name && property === undefined) {
|
|
return fieldInfo[name];
|
|
}
|
|
if (name && property) {
|
|
return fieldInfo[name][property]
|
|
}
|
|
},
|
|
isMandatory: function (name) {
|
|
if (fieldInfo[name]) {
|
|
return fieldInfo[name].mandatory;
|
|
}
|
|
return false;
|
|
},
|
|
getType: function (name) {
|
|
if (fieldInfo[name]) {
|
|
return fieldInfo[name].type
|
|
}
|
|
return false;
|
|
}
|
|
},
|
|
};
|
|
})();
|
|
</script>
|
|
{/if}
|
|
</div>
|
|
{/strip}
|