- 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.
52 lines
1.4 KiB
PHP
52 lines
1.4 KiB
PHP
<?php
|
|
/**
|
|
This File was developed by Stefan Warnat <vtiger@stefanwarnat.de>
|
|
|
|
It belongs to the Workflow Designer and must not be distributed without complete extension
|
|
**/
|
|
class WfCrmObject
|
|
{
|
|
protected $_crmid;
|
|
protected $_module_name;
|
|
protected $_objectCache = false;
|
|
|
|
public function __construct($crmid, $module_name) {
|
|
$this->_crmid = $crmid;
|
|
$this->_module_name = $module_name;
|
|
}
|
|
|
|
public function getObject() {
|
|
if($this->_objectCache !== false) {
|
|
return $this->_objectCache;
|
|
}
|
|
|
|
$className = $this->_module_name;
|
|
require_once("modules/".$className."/".$className.".php");
|
|
|
|
$object = new $className();
|
|
$object->retrieve_entity_info($this->_crmid, $this->_module_name);
|
|
|
|
$this->_objectCache = $object;
|
|
|
|
return $object;
|
|
}
|
|
|
|
public function getFieldsByUitype($uitypes) {
|
|
if(!is_array($uitypes)) $uitypes = array($uitypes);
|
|
global $adb;
|
|
|
|
$querystr = "select fieldid, fieldname, fieldlabel, columnname from vtiger_field where tabid=? and uitype IN (".implode(",", $uitypes).") and vtiger_field.presence in (0,2)";
|
|
$res=$adb->pquery($querystr, array(getTabid($this->_module_name)));
|
|
|
|
$fields = array();
|
|
$object = $this->getObject();
|
|
while($row = $adb->fetch_array($res)) {
|
|
$fields[$row["fieldname"]] = $object->column_fields[$row["columnname"]];
|
|
}
|
|
|
|
return $fields;
|
|
}
|
|
}
|
|
|
|
|
|
?>
|