|
Revision 1404, 371 bytes
(checked in by mheydon1973, 7 years ago)
|
DND module
|
- 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('donotdisturb', 'dnd_on'); |
|---|
| 5 |
$fcc->setDescription('DND Activate'); |
|---|
| 6 |
$fcc->setDefault('*78'); |
|---|
| 7 |
$fcc->update(); |
|---|
| 8 |
unset($fcc); |
|---|
| 9 |
|
|---|
| 10 |
// Register FeatureCode - Deactivate |
|---|
| 11 |
$fcc = new featurecode('donotdisturb', 'dnd_off'); |
|---|
| 12 |
$fcc->setDescription('DND Deactivate'); |
|---|
| 13 |
$fcc->setDefault('*79'); |
|---|
| 14 |
$fcc->update(); |
|---|
| 15 |
unset($fcc); |
|---|
| 16 |
|
|---|
| 17 |
?> |
|---|