root/modules/branches/2.3/infoservices/install.php

Revision 2130, 0.7 kB (checked in by qldrob, 7 years ago)

Whoops, I didn't want to do that.

  • Property svn:mime-type set to text/html
  • Property svn:eol-style set to native
Line 
1 <?php
2
3 $fcc = new featurecode('infoservices', 'directory');
4 $fcc->setDescription('Directory');
5 $fcc->setDefault('#');
6 $fcc->update();
7 unset($fcc);
8
9 $fcc = new featurecode('infoservices', 'calltrace');
10 $fcc->setDescription('Call Trace');
11 $fcc->setDefault('*69');
12 $fcc->update();
13 unset($fcc); 
14
15 $fcc = new featurecode('infoservices', 'echotest');
16 $fcc->setDescription('Echo Test');
17 $fcc->setDefault('*43');
18 $fcc->update();
19 unset($fcc); 
20
21 $fcc = new featurecode('infoservices', 'speakingclock');
22 $fcc->setDescription('Speaking Clock');
23 $fcc->setDefault('*60');
24 $fcc->update();
25 unset($fcc); 
26
27 $fcc = new featurecode('infoservices', 'speakextennum');
28 $fcc->setDescription('Speak Your Exten Number');
29 $fcc->setDefault('*65');
30 $fcc->update();
31 unset($fcc); 
32
33 ?>
Note: See TracBrowser for help on using the browser.