Changeset 6895
- Timestamp:
- 09/30/08 01:02:16 (5 years ago)
- Files:
-
- modules/branches/2.5/paging/install.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.5/paging/install.php
r6694 r6895 1 1 <?php 2 //for translation only 3 if (false) { 4 _("Intercom prefix"); 5 _("User Intercom Allow"); 6 _("User Intercom Disallow"); 7 } 8 2 9 global $amp_conf; 3 10 // Enable intercom as a feature code 4 $intercomprefix = _("Intercom prefix");5 11 $fcc = new featurecode('paging', 'intercom-prefix'); 6 $fcc->setDescription( $intercomprefix);12 $fcc->setDescription('Intercom prefix'); 7 13 $fcc->setDefault('*80',false); 8 14 $fcc->update(); … … 10 16 11 17 // User intercom enable code 12 $userinterallow = _("User Intercom Allow");13 18 $fcc = new featurecode('paging', 'intercom-on'); 14 $fcc->setDescription( $userinterallow);19 $fcc->setDescription('User Intercom Allow'); 15 20 $fcc->setDefault('*54',false); 16 21 $fcc->update(); … … 18 23 19 24 // User intercom disable 20 $userintercomdisallow = _("User Intercom Disallow");21 25 $fcc = new featurecode('paging', 'intercom-off'); 22 $fcc->setDescription( $userintercomdisallow);26 $fcc->setDescription('User Intercom Disallow'); 23 27 $fcc->setDefault('*55',false); 24 28 $fcc->update();
