|
Revision 2925, 385 bytes
(checked in by qldrob, 6 years ago)
|
Fix SVN mime-types
|
- Property svn:mime-type set to
text/html
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
// Register Feature Code - Perform Dictation |
|---|
| 4 |
$fcc = new featurecode('dictate', 'dodictate'); |
|---|
| 5 |
$fcc->setDescription('Perform dictation'); |
|---|
| 6 |
$fcc->setDefault('*34'); |
|---|
| 7 |
$fcc->update(); |
|---|
| 8 |
unset($fcc); |
|---|
| 9 |
|
|---|
| 10 |
// Email dictation to user |
|---|
| 11 |
$fcc = new featurecode('dictate', 'senddictate'); |
|---|
| 12 |
$fcc->setDescription('Email completed dictation'); |
|---|
| 13 |
$fcc->setDefault('*35'); |
|---|
| 14 |
$fcc->update(); |
|---|
| 15 |
unset($fcc); |
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
?> |
|---|