|
Revision 5397, 467 bytes
(checked in by p_lindheimer, 1 year ago)
|
add silentmonitor to contributed modules directory. I'll consider adding this to the released product once I get some testers to confirm that it works properly. In addition, it should be changed to add/remove the 1.4+ only feature codes during retrieve_conf upon detecting a change in asterisk version in addition to at install/uninstall time - or shoudl just have dependencies added to make it 1.4 only
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
echo "removing featurecode silentmonitor-in.."; |
|---|
| 4 |
$fcc = new featurecode('silentmonitor', 'in'); |
|---|
| 5 |
$fcc->delete(); |
|---|
| 6 |
unset($fcc); |
|---|
| 7 |
echo "done<br>\n"; |
|---|
| 8 |
|
|---|
| 9 |
echo "removing featurecode silentmonitor-whisper.."; |
|---|
| 10 |
$fcc = new featurecode('silentmonitor', 'whisper'); |
|---|
| 11 |
$fcc->delete(); |
|---|
| 12 |
unset($fcc); |
|---|
| 13 |
echo "done<br>\n"; |
|---|
| 14 |
|
|---|
| 15 |
echo "removing featurecode silentmonitor-whisperpv.."; |
|---|
| 16 |
$fcc = new featurecode('silentmonitor', 'whisperpv'); |
|---|
| 17 |
$fcc->delete(); |
|---|
| 18 |
unset($fcc); |
|---|
| 19 |
echo "done<br>\n"; |
|---|
| 20 |
|
|---|
| 21 |
?> |
|---|