root/modules/branches/2.5/speeddial/install.php

Revision 6898, 475 bytes (checked in by mickecarlsson, 5 years ago)

Reverting previous changes, add strings for localization for speeddial

  • Property svn:mime-type set to text/plain
  • Property svn:eol-style set to native
Line 
1 <?php
2 //for translation only
3 if (false) {
4 _("Speed Dial Functions");
5 _("Speeddial prefix");
6 _("Set user speed dial");
7 }
8
9 // Enable phonebook directory as a feature code
10 $fcc = new featurecode('speeddial', 'callspeeddial');
11 $fcc->setDescription('Speeddial prefix');
12 $fcc->setDefault('*0');
13 $fcc->update();
14 unset($fcc);
15
16 $fcc = new featurecode('speeddial', 'setspeeddial');
17 $fcc->setDescription('Set user speed dial');
18 $fcc->setDefault('*75');
19 $fcc->update();
20 unset($fcc);
21
22 ?>
Note: See TracBrowser for help on using the browser.