Advanced Search
Search Results
22 total results found
Import Processes with a script
From version 18.05 (rev. 1696) it is possible to import processes previously exported in the format vtebpmn (diagram + configuration) or bpmn (diagram only) with php scripts using the importFile method of the ProcessMakerUtils class.The importFile method takes...
SDK
You can add custom functions to processes, click here for more details.
Installazione di hotfix tramite vteUpdater
Lo script vteUpdater supporta l'applicazione di hotfix dalla versione 1.64 quindi per aggiornarlo all'ultima versione posizionarsi nella cartella root di vtenext ed eseguire il comando:./vteUpdater.sh --force-upgrade Il modo più semplice è lanciare il vteUpda...
Installing hotfix using vteUpdater
The vteUpdater script supports hotfix application from version 1.64 so to update it to the latest version go to the root folder of vtenext and run the command:./vteUpdater.sh --force-upgrade The simplest way is to launch the vteUpdater with the --hotfix param...
vtenext Business 25.02.1 Release Note
Nuova azione BPMN per valorizzare il campo Ricevi Newsletter Tra le funzioni SDK delle azioni BPMN è stata aggiunta Set receiving newsletter che permette di attivare/disattivare la ricezione delle newsletter per un specifico record. Possibilità di atti...
vtenext Business 25.02.2 Release Note
Installazione hotfix da interfaccia Abbiamo introdotto una nuova interfaccia dedicata alla gestione degli hotfix direttamente dalle impostazioni. Ora è possibile: Installare hotfix direttamente da UI Visualizzare la lista degli hotfix disponibili Contro...
vtenext 25.02.2 Release Note
Hotfix installation from UI We have introduced a new interface dedicated to managing hotfixes directly from the settings. It is now possible to: Install hotfixes directly from the UI View the list of available hotfixes Check already applied hotfixes Id...
Requisiti di installazione vtenext 26.04
1. Requisiti Hardware minimi: Ram: 2 GB Hard Disk: 20 GB Processore: 2 Ghz dual core 2. Requisiti Hardware consigliati: Ram: 4 GB Hard Disk: 80 GB Processore: 2 Ghz quad core 3. Sistema operativo consigliato: Il sistema operativo consigliato p...
Installation requirements vtenext 26.04
1. Minimum Hardware Requirements: RAM: 2 GB Hard Disk: 20 GB Processor: 2 GHz dual-core 2. Recommended Hardware Requirements: RAM: 4 GB Hard Disk: 80 GB Processor: 2 GHz quad-core 3. Recommended Operating System: The recommended operating syst...
Coding style
A list of coding style rules to be used when developing in vtenext. File encoding: UTF-8. All files should be encoded in UTF-8 Newlines: Unix style, so \n, not \r\n or \r Indentation size: With TABS, set to 4 character. Don't mix spaces a...
Introduction
Starting with vtenext version 26.01, all variables outputted by Smarty templates (for example {$VARIABLE} ) by default have all applicable characters are converted to html &...; notation. For instance, the string "nice & 'smooth' à > è" is converted to "nice &...
Escaping rules
1. Avoid html code in php Avoid generating html code directly in php, or outputting it, if possible use Smarty templates. Exceptions can be made for very short snippets, see paragraph 3 for how to handle them. Examples Good $name = ...
Cheat sheet
Quick reference if you just need to know how to escape stuff! Do's and Don'ts Use only query_result_no_html and fetchByAssoc(..., -1, false) or fetchByAssocNoHtml, we don't want that pesky to_html function to be called Do not generate html strings in ph...
RequestHandler
What is RequestHandler? RH (alias for RequestHandler) provides secure, centralized access to HTTP request data. It automatically sanitizes input using vtlib_purify() and applies type-safe filters from F:: enum. This replaces direct access to superglobals like...
Introduzione
Vedi Escaping > Introduction
Regole di escape
Vedi Escaping > Escaping rules
Guida rapida
Vedi Escaping > Cheat sheet
RequestHandler
Vedi RequestHandler