Download the PHP package clystnet/vtiger without Composer
On this page you can find all versions of the php package clystnet/vtiger. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download clystnet/vtiger
More information about clystnet/vtiger
Files in clystnet/vtiger
Package vtiger
Short Description Package to run Vtiger Webservice API
License MIT
Homepage https://github.com/Clystnet/Vtiger
Informations about the package vtiger
ο»Ώ# This package is deprecated
Here at Clystnet We no longer maintain the Open Source version of this package. We do however maintain our in house version of this package which you talk to us about using by contacting [email protected].
Vtiger (Laravel 5 Package)
Use the Vtiger webservice (REST) API from within Laravel for the following operations.
- Create
- Retrieve
- Update
- Delete
- Search
- Query
- Describe
See Third Party App Integration (REST APIs)
Installation, Configuration and Usage
Installing
-
In order to install the Vtiger package in your Laravel project, just run the composer require command from your terminal:
If you are using Laravel >= 5.5 you donβt need to do steps 2 and 3.
-
Then in your config/app.php add the following to the providers array:
-
In the same config/app.php add the following to the aliases array:
- Publish the configuration file:
Configuration
- In Vtiger, create a new or select an existing user.
- Under User Advanced Options make note of the username and access key.
-
In your application, edit config/vtiger.php and replace the following array values
- Set the url to the https://{DOMAIN_NAME}/webservice.php
- Set the username and accesskey with your CRM username and access key.
- Set persistconnection to false if you want a fresh login with each request
key value url http://www.example.com/webservice.php username API accesskey irGsy9HB0YOZdEA persistconnection true max_retries 10
Because I've experienced problems getting the sessionid from the CRM when multiple users are accessing the CRM at the same time, the solution was to store the sessionid into a file within Laravel application. Instead of getting the token from the database for each request using the webservice API, a check is made against the expiry time in the file. If the expiry time has expired, a token is requested from the CRM and file is updated with the new token and updated expiry time.
Usage
In your controller include the Vtiger package
Create
To insert a record into the CRM, first create an array of data to insert. Don't forget the added the id of the assigned_user_id
(i.e. '4x12') otherwise the insert will fail as assigned_user_id
is a mandatory field.
To do the actual insert, pass the module name along with the json encoded array to the create function.
Retrieve
To retrieve a record from the CRM, you need the id of the record you want to find (i.e. '4x12').
Update
The easiest way to update a record in the CRM is to retrieve the record first.
Then update the object with updated data.
Delete
To delete a record from the CRM, you need the id of the record you want to delete (i.e. '4x12').
Lookup
This function uses the Vtiger Lookup API endpoint to search for a single piece of information within multiple columns of a Vtiger module. This function is often multitudes faster than the search function.
Search
This function is a sql query builder wrapped around the query function. Accepts instance of laravels QueryBuilder.
By default the function will quote but not escape your inputs, if you wish for your data to not be quoted, set the 3rd paramater to false like so:
Also keep in mind that Vtiger has several limitations on it's sql query capabilities. You can not use conditional grouping i.e "where (firstname = 'John' AND 'lastname = 'Doe') OR (firstname = 'Jane' AND lastname = 'Smith') will fail.
Query
To use the Query Operation, you first need to create a SQL query.
Then run the query...
Describe
To describe modules in the CRM run this with the module name
Contributing
Please report any issue you find in the issues page. Pull requests are more than welcome.
Authors
License
This project is licensed under the MIT License - see the LICENSE.md file for details
Contributors β¨
Thanks goes to these wonderful people (emoji key):
Ahmad Syamim π» |
Clyde Cox π» π |
Christopher Pratt π» π |
adam-godfrey π» π |
This project follows the all-contributors specification. Contributions of any kind welcome!