|
Revision 1399, 387 bytes
(checked in by mheydon1973, 6 years ago)
|
FeatureCodes should be all now working. New module for admin'ing them as well
|
- Property svn:mime-type set to
text/html
- Property svn:eol-style set to
native
- Property svn:executable set to
*
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
// Register FeatureCode - Activate |
|---|
| 4 |
$fcc = new featurecode('callwaiting', 'cwon'); |
|---|
| 5 |
$fcc->setDescription('Call Waiting - Activate'); |
|---|
| 6 |
$fcc->setDefault('*70'); |
|---|
| 7 |
$fcc->update(); |
|---|
| 8 |
unset($fcc); |
|---|
| 9 |
|
|---|
| 10 |
// Register FeatureCode - Deactivate |
|---|
| 11 |
$fcc = new featurecode('callwaiting', 'cwoff'); |
|---|
| 12 |
$fcc->setDescription('Call Waiting - Deactivate'); |
|---|
| 13 |
$fcc->setDefault('*71'); |
|---|
| 14 |
$fcc->update(); |
|---|
| 15 |
unset($fcc); |
|---|
| 16 |
|
|---|
| 17 |
?> |
|---|