Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

1657 total results found

Installazione

Connettore Wildix

L’installazione prevede le seguenti attività:• installazione modulo lato vtenext• attivazione licenze sulla centrale Wildix (se non presenti)• configurazione modulo• configurazione utentiL’installazione può essere svolta dal master partner CRMVillage o da un p...

Architettura

Connettore Wildix

Include custom php/js/css files

Developers SDK 2

In order to include your custom code (that will be included in every page) you need to register the new file with this call: SDK::setUtil($src); $src : the php file path and the file name to be included To remove the customization: SDK::unsetUtil($src); $...

Javascript overrides and extensions

Developers SDK 2

Some commonly used Javascript functions can be replaced or extended to change their behavior. To do this, simply create a function that has the same name as the function to be modified with the addition of "_override" or "_extension" and the same parameters. T...

Standard PHP replacement

Developers SDK 2

You can replace the standard php files of the modules, such as DetailView.php, EditView.php and so on through the method: SDK::setFile($module, $file, $newfile); $module : the name of the module$file : the value of the "action" parameter to be compared$newfi...

Inclusion of other files

Developers SDK 2

To associate files or folders to a module, so that they are imported automatically, the following methods are available: SDK::setExtraSrc($module, $src); $module : the name of the module$src : the path of the file or folder to be associated To delete the as...

Custom Uitypes

Developers SDK 2

You can add new types to the existing ones and manage them completely without changing other code. The procedure for creating a new one is: Create a new custom field with the new type (nnn) Create the files:a. nnn.php in modules/SDK/examplesb. nnn.js in mo...

Smarty Custom Templates

Developers SDK 2

You can create your own templates, which replace the standard ones (such as EditView.tpl and so on). The new template is used if $_REQUEST values of the page meet the requirements. The registration of a new template is done through the method: SDK::setSmartyT...

Popup

Developers SDK 2

Two actions are available for managing popup. You can insert a php script before the query is made to load the data. In addition, it is possible to insert another php script before the data is shown, so you can edit this data or the result when the popup is cl...

Presave

Developers SDK 2

You can enter your own script when you press the "Save" button in EditView mode. To register a script use the method: SDK::setPreSave($module, $src); $module : the name of the module$src : the path of php file To remove the customization: SDK::unsetPreSave...

Advanced query

Developers SDK 2

You can modify the query executed to load the data in ListView, RelatedList and Popup mode in order to limit or extend the visibility of the data. This does not affect Administrator users, who have access to all data. In addition, the module must be set as Pri...

Page Header

Developers SDK 2

You can customize the user icon, the settings icon or the blue bars at the top of the pages of VTE to incorporate new features. To do this, simply extend the method setCustomVars of class VTEPageHeader as follows: SDK::setClass('VTEPageHeader', 'NewPageHeader...

Translations

Developers SDK 2

Translations can be customized for each language and module installed. To modify or insert a new translation use the method: SDK::setLanguageEntry($module, $langid, $label, $newlabel); $module : the module name that contains the string$langid : the code of t...

Fields Visibility

Developers SDK 2

You can change the visibility of the various fields (value of $readonly) and other variables in the different modes (ListView, EditView, and so on) via SDK. To register a new "view" use the method: SDK::addView($module, $src, $mode, $success); $module : the ...

Home Blocks

Developers SDK 2

New blocks can be added to the home of VTE via SDK. The blocks cannot be deleted from the interface. The method for creating a new block is: SDK::setHomeIframe($size, $url, $title, $userid = null, $useframe = true); $size : the horizontal size of the block (...

Custom Buttons

Developers SDK 2

Buttons can be added under the main menu. To insert a new button use the following method: SDK::setMenuButton($type, $title, $onclick, $image='', $module='', $action='', $condition = ''); $type : the type of button, it can be 'fixed' or 'contextual'; in the ...

Transitions Manager

Developers SDK 2

You can change the selection options for the picklists managed by the transitions manager, as well as add messages to the "State manager" block to the right of the record detail. To register this functionality use the method: SDK::setTransition($module, $fiel...

PdfMaker Custom Functions

Developers SDK 2

Custom functions can be added in the PDFMaker module. To insert one use: SDK::setPDFCustomFunction($label, $name, $params); $label: the label of the function (it is translated into the PDFMaker module)$name: the name of the function$params: array with the na...