- 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.
27 lines
801 B
Plaintext
27 lines
801 B
Plaintext
Using skeleton module
|
|
=====================
|
|
|
|
1. Copy ModuleDir/<target_vtiger_version> to modules/<NewModuleName>
|
|
2. Rename modules/<NewModuleName>/ModuleFile.php to <NewModuleName>.php
|
|
3. Rename modules/<NewModuleName>/ModuleFileAjax.php to <NewModuleName>Ajax.php
|
|
4. Rename modules/<NewModuleName>/ModuleFile.js to <NewModuleName>.js
|
|
|
|
5. Edit <NewModuleName>.php
|
|
|
|
a. Update $table_name and $table_index (Module table name and table index column)
|
|
|
|
b. Update $groupTable
|
|
|
|
c. Update $tab_name, $tab_name_index
|
|
|
|
d. Update $list_fields, $list_fields_name, $sortby_fields
|
|
|
|
e. Update $detailview_links
|
|
|
|
f. Update $default_order_by, $default_sort_order
|
|
|
|
g. Update $customFieldTable
|
|
|
|
h. Rename class ModuleClass to class <NewModuleName>
|
|
|
|
Refer documentation for more details. |