File: /home4/cca63905/public_html/nueva/modules/smartsupp/vendor/smartsupp/chat-code-generator/README.md
[](https://travis-ci.org/smartsupp/chat-code-generator)
[](https://coveralls.io/github/smartsupp/chat-code-generator?branch=master)
# Smartsupp chat code generator
This is simple PHP class for Smartsupp chat API which helps you to generate chat JavaScript code.
* https://www.smartsupp.com/
* [More info about Smartsupp CHAT API](https://developers.smartsupp.com/chat/configuration) This is "Get started" doc for chat API.
* [More info about Smartsupp CHAT API - Overview](https://developers.smartsupp.com/chat/overview) This is full documentation for chat API. Note, that not all properties are possible to be set using this class.
## Get Started
Here is an example on how to use it:
```php
$chat = new Smartsupp\ChatGenerator;
$chat->setKey('XYZ123456');
$chat->disableSendEmailTranscript();
$chat->enableRating('advanced', true);
$chat->setBoxPosition('left', 'side', 20, 120);
$chat->setName('Johny Depp');
$chat->setEmail('johny@depp.com');
$chat->setVariable('orderTotal', 'Total orders', 150);
$chat->setVariable('lastOrder', 'Last ordered', '2015-07-09');
$chat->setGoogleAnalytics('UA-123456');
$data = $chat->render();
```
## Copyright
Copyright (c) 2016 Smartsupp.com, s.r.o.