Changeset 3387
- Timestamp:
- 12/20/06 09:30:06 (6 years ago)
- Files:
-
- modules/branches/2.3 (modified) (1 prop)
- modules/branches/2.3/miscdests/module.xml (modified) (1 diff)
- modules/branches/2.3/miscdests/page.miscdests.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.3
- Property svnmerge-integrated changed from /modules/branches/2.2:1-3329,3355-3356,3359-3360 to /modules/branches/2.2:1-3329,3355-3356,3359-3360,3385-3386
modules/branches/2.3/miscdests/module.xml
r2935 r3387 2 2 <rawname>miscdests</rawname> 3 3 <name>Misc Destinations</name> 4 <version>1.3 </version>4 <version>1.3.1</version> 5 5 <type>setup</type> 6 6 <category>Inbound Call Control</category> 7 7 <description>Allows creating destinations that dial any local number (extensions, feature codes, outside phone numbers) that can be used by other modules (eg, IVR, time conditions) as a call destination.</description> 8 <changelog>*1.3* First release for FreePBX 2.2 - Fixed GUI issues</changelog> 8 <changelog> 9 *1.3.1* Updated help text 10 *1.3* First release for FreePBX 2.2 - Fixed GUI issues 11 </changelog> 9 12 <menuitems> 10 13 <miscdests>Misc Destinations</miscdests> 11 14 </menuitems> 12 <location>release/2.2/miscdests-1.3. tgz</location>15 <location>release/2.2/miscdests-1.3.1.tgz</location> 13 16 <info>http://aussievoip.com.au/wiki/freePBX-MiscDests</info> 14 <md5sum> cc88b23628fc34082000b08ca24d50be</md5sum>17 <md5sum>8315cd64cafe01da12372bcef02a7bb3</md5sum> 15 18 </module> modules/branches/2.3/miscdests/page.miscdests.php
r3204 r3387 93 93 94 94 $delURL = $_SERVER['PHP_SELF'].'?'.$_SERVER['QUERY_STRING'].'&action=delete'; 95 ?> 96 97 98 <?php if ($extdisplay){ ?> 95 96 97 $helptext = _("Misc Destinations are for adding destinations that can be used by other freePBX modules, generally used to route incoming calls. If you want to create feature codes that can be dialed by internal users and go to various destinations, please see the <strong>Misc Applications</strong> module."); 98 echo "<p>".$helptext."</p>\n"; 99 100 101 102 if ($extdisplay){ ?> 99 103 <h2><?php echo _("Misc Destination:")." ". $description; ?></h2> 100 104 <p><a href="<?php echo $delURL ?>"><?php echo _("Delete Misc Destination")?> '<?php echo $description; ?>'</a></p> … … 116 120 </tr> 117 121 <tr> 118 <td><a href="#" class="info"><?php echo _("dial:")?><span><?php echo _("Enter the digits to dial for this Misc Destination.")?></span></a></td>122 <td><a href="#" class="info"><?php echo _("dial:")?><span><?php echo _("Enter the number this destination will simulate dialing, exactly as you would dial it from an internal phone. When you route a call to this destination, it will be as if the caller dialed this number from an internal phone.") ?></span></a></td> 119 123 <td> 120 124 <input type="text" name="destdial" value="<?php echo (isset($destdial) ? $destdial : ''); ?>"> 121 125 <?php if (isset($fclist)) { ?> 122 126 <select id="fc" onchange="fc_onchange();"> 123 <option value="">--<?php echo _("featurecode "); ?>--</option>127 <option value="">--<?php echo _("featurecode shortcuts"); ?>--</option> 124 128 <?php 125 129 foreach ($fclist as $fckey => $fcdesc) {
