|
Revision 7232, 228 bytes
(checked in by p_lindheimer, 4 years ago)
|
module that allows a post answer agi script to be fired from a ringgroup, along with an agi script that will work with sugarcrm to triger CRM popup information based on CID and the DID that was called. The module is generalize so that new agi scripts can be introduced for other similar functionality
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
global $db; |
|---|
| 4 |
|
|---|
| 5 |
echo "dropping table cidpopup.."; |
|---|
| 6 |
sql("DROP TABLE IF EXISTS `cidpopup`"); |
|---|
| 7 |
echo "done<br>\n"; |
|---|
| 8 |
|
|---|
| 9 |
echo "dropping table cidpopup_instance.."; |
|---|
| 10 |
sql("DROP TABLE IF EXISTS `cidpopup_instance`"); |
|---|
| 11 |
echo "done<br>\n"; |
|---|
| 12 |
?> |
|---|