|
Revision 1626, 1.4 kB
(checked in by mheydon1973, 7 years ago)
|
Ticket #659 (Bugs) -- Typos in Feature Codes Admin Page
|
- Property svn:mime-type set to
text/html
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
// Unconditional Call Forwarding |
|---|
| 4 |
$fcc = new featurecode('callforward', 'cfon'); |
|---|
| 5 |
$fcc->setDescription('Call Forward All Activate'); |
|---|
| 6 |
$fcc->setDefault('*72'); |
|---|
| 7 |
$fcc->update(); |
|---|
| 8 |
unset($fcc); |
|---|
| 9 |
|
|---|
| 10 |
$fcc = new featurecode('callforward', 'cfoff'); |
|---|
| 11 |
$fcc->setDescription('Call Forward All Deactivate'); |
|---|
| 12 |
$fcc->setDefault('*73'); |
|---|
| 13 |
$fcc->update(); |
|---|
| 14 |
unset($fcc); |
|---|
| 15 |
|
|---|
| 16 |
$fcc = new featurecode('callforward', 'cfoff_any'); |
|---|
| 17 |
$fcc->setDescription('Call Forward All Prompting Deactivate'); |
|---|
| 18 |
$fcc->setDefault('*74'); |
|---|
| 19 |
$fcc->update(); |
|---|
| 20 |
unset($fcc); |
|---|
| 21 |
|
|---|
| 22 |
// Call Forward on Busy |
|---|
| 23 |
$fcc = new featurecode('callforward', 'cfbon'); |
|---|
| 24 |
$fcc->setDescription('Call Forward Busy Activate'); |
|---|
| 25 |
$fcc->setDefault('*90'); |
|---|
| 26 |
$fcc->update(); |
|---|
| 27 |
unset($fcc); |
|---|
| 28 |
|
|---|
| 29 |
$fcc = new featurecode('callforward', 'cfboff'); |
|---|
| 30 |
$fcc->setDescription('Call Forward Busy Deactivate'); |
|---|
| 31 |
$fcc->setDefault('*91'); |
|---|
| 32 |
$fcc->update(); |
|---|
| 33 |
unset($fcc); |
|---|
| 34 |
|
|---|
| 35 |
$fcc = new featurecode('callforward', 'cfboff_any'); |
|---|
| 36 |
$fcc->setDescription('Call Forward Busy Prompting Deactivate'); |
|---|
| 37 |
$fcc->setDefault('*92'); |
|---|
| 38 |
$fcc->update(); |
|---|
| 39 |
unset($fcc); |
|---|
| 40 |
|
|---|
| 41 |
// Call Forward on No Answer/Unavailable (i.e. phone not registered) |
|---|
| 42 |
$fcc = new featurecode('callforward', 'cfuon'); |
|---|
| 43 |
$fcc->setDescription('Call Forward No Answer/Unavailable Activate'); |
|---|
| 44 |
$fcc->setDefault('*52'); |
|---|
| 45 |
$fcc->update(); |
|---|
| 46 |
unset($fcc); |
|---|
| 47 |
|
|---|
| 48 |
$fcc = new featurecode('callforward', 'cfuoff'); |
|---|
| 49 |
$fcc->setDescription('Call Forward No Answer/Unavailable Deactivate'); |
|---|
| 50 |
$fcc->setDefault('*53'); |
|---|
| 51 |
$fcc->update(); |
|---|
| 52 |
unset($fcc); |
|---|
| 53 |
|
|---|
| 54 |
?> |
|---|