Vtiger is a PHP-based, open-source CRM application which forked off SugarCRM. Very suitable for small and medium enterprises, it uses the Smarty template engine. One can also import and export specific modules with or without customization.
I am writing a wordpress-plugin which queries data from the vTiger Webservice-API. I read the tutorial (https://wiki.vtiger.com/index.php/Webservices_tutorials#QueryResult) and know the reference…
I am working on vTiger 6.5 and I am trying to figure a way to see if a record exists in a custom module of mine. I want to check whether the 'policynumber' is new before saving, here is my code so far. For some reason it seems to act randomly…
I want to add new module and deactivate some controlls(left panel and bottom header). Where is some file(config) in which I can write some conditions for this?
I want to safe for this module only top header.
We need to set up a couple vTiger instances for user training and to test add-ons and CRM Settings (like: workflow, custom fields, picklists and custom functions, etc).
For example, rather than toy around in the a production environment for a major…
I have an API call in vtiger which will give Accounts record details, this call is executed by AppConnector.request() method in vtiger.
How to get the data from this call and manipulate with some conditions. Meaning that,... I have a code like…
Add below code in module/Edit.php
$query = 'SELECT f.* FROM vtiger_field as f
INNER JOIN vtiger_tab as t on f.tabid = t.tabid and t.name=?
WHERE fieldname =?';
$result = $adb->pquery($query, array('{module_name}',…
I would like to pass two parameters to a SELECT query for one scenario in a vtiger custom function. Like below ..
function start_date($projectid, $stage){
$adb = PearDatabase::getInstance();
$stage = "Stage-0";
$data =…
I'm using existing Task module under the Project module. I would like to
assign particular task to multiple workers. Meaning that group of people
will together complete the task.
I already have workers as users in my vtigercrm. So if i make a user…
I have a module ABC in that i need to create another users picklist irrespective of "Assigned To" like already there for every module. I tried to create that by copying existed field for "Assigned To" in vtiger_field table. But it is not working for…
I am trying to setup an account on the Mail Manager using "Others" mail server but when i click on the button Save button on the Setting menu it seems that the details has been saved but if refresh the page, Vtiger ask me to configure mailbox…
I am implementing a client to consume vtiger REST API and in the login process I manage to get it working with curl but not with Guzzle.
Guzzle code:
$postData = [
'operation' => 'login',
'username' => $userName,
'accessKey' =>…
I am executing a curl request and get a response which returns a json response. Below is the code after the response is sent back.
Response: "Zeros Replaced real…
I have recently enabled comments for the Campaign module, they work fine if you click comments on the right-hand menu, but I can't work out how to get the comments widget block to show within the detail view of the page.
I have added the following…