|
Revision 2298, 1.0 kB
(checked in by qldrob, 7 years ago)
|
Added another of webbrainstorms patches, thanks! - Ref #1043
|
- Property svn:mime-type set to
text/html
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
$fcc = new featurecode('core', 'userlogon'); |
|---|
| 4 |
$fcc->setDescription('User Logon'); |
|---|
| 5 |
$fcc->setDefault('*11'); |
|---|
| 6 |
$fcc->update(); |
|---|
| 7 |
unset($fcc); |
|---|
| 8 |
|
|---|
| 9 |
$fcc = new featurecode('core', 'userlogoff'); |
|---|
| 10 |
$fcc->setDescription('User Logoff'); |
|---|
| 11 |
$fcc->setDefault('*12'); |
|---|
| 12 |
$fcc->update(); |
|---|
| 13 |
unset($fcc); |
|---|
| 14 |
|
|---|
| 15 |
$fcc = new featurecode('core', 'zapbarge'); |
|---|
| 16 |
$fcc->setDescription('ZapBarge'); |
|---|
| 17 |
$fcc->setDefault('888'); |
|---|
| 18 |
$fcc->update(); |
|---|
| 19 |
unset($fcc); |
|---|
| 20 |
|
|---|
| 21 |
$fcc = new featurecode('core', 'chanspy'); |
|---|
| 22 |
$fcc->setDescription('ChanSpy'); |
|---|
| 23 |
$fcc->setDefault('555'); |
|---|
| 24 |
$fcc->update(); |
|---|
| 25 |
unset($fcc); |
|---|
| 26 |
|
|---|
| 27 |
$fcc = new featurecode('core', 'simu_pstn'); |
|---|
| 28 |
$fcc->setDescription('Simulate Incoming Call'); |
|---|
| 29 |
$fcc->setDefault('7777'); |
|---|
| 30 |
$fcc->update(); |
|---|
| 31 |
unset($fcc); |
|---|
| 32 |
|
|---|
| 33 |
$fcc = new featurecode('core', 'simu_fax'); |
|---|
| 34 |
$fcc->setDescription('Simulate Incoming FAX Call'); |
|---|
| 35 |
$fcc->setDefault('666'); |
|---|
| 36 |
$fcc->update(); |
|---|
| 37 |
unset($fcc); |
|---|
| 38 |
|
|---|
| 39 |
$fcc = new featurecode('core', 'pickup'); |
|---|
| 40 |
$fcc->setDescription('Call Pickup (Can be used with GXP-2000)'); |
|---|
| 41 |
$fcc->setDefault('**'); |
|---|
| 42 |
$fcc->update(); |
|---|
| 43 |
unset($fcc); |
|---|
| 44 |
|
|---|
| 45 |
?> |
|---|