Changeset 3387

Show
Ignore:
Timestamp:
12/20/06 09:30:06 (6 years ago)
Author:
gregmac
Message:

Merged revisions 3385-3386 via svnmerge from
https://amportal.svn.sourceforge.net/svnroot/amportal/modules/branches/2.2

........

r3385 | gregmac | 2006-12-20 09:25:30 -0500 (Wed, 20 Dec 2006) | 2 lines


Updated help text

........

r3386 | gregmac | 2006-12-20 09:26:02 -0500 (Wed, 20 Dec 2006) | 1 line


Module Publish Script: miscdests 1.3.1

........

Files:

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  
    22  <rawname>miscdests</rawname> 
    33  <name>Misc Destinations</name> 
    4   <version>1.3</version> 
     4  <version>1.3.1</version> 
    55  <type>setup</type> 
    66  <category>Inbound Call Control</category> 
    77  <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> 
    912  <menuitems> 
    1013    <miscdests>Misc Destinations</miscdests> 
    1114  </menuitems> 
    12   <location>release/2.2/miscdests-1.3.tgz</location> 
     15  <location>release/2.2/miscdests-1.3.1.tgz</location> 
    1316  <info>http://aussievoip.com.au/wiki/freePBX-MiscDests</info> 
    14   <md5sum>cc88b23628fc34082000b08ca24d50be</md5sum> 
     17  <md5sum>8315cd64cafe01da12372bcef02a7bb3</md5sum> 
    1518</module> 
  • modules/branches/2.3/miscdests/page.miscdests.php

    r3204 r3387  
    9393 
    9494  $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."); 
     98echo "<p>".$helptext."</p>\n"; 
     99 
     100 
     101   
     102    if ($extdisplay){ ?> 
    99103  <h2><?php echo _("Misc Destination:")." ". $description; ?></h2> 
    100104  <p><a href="<?php echo $delURL ?>"><?php echo _("Delete Misc Destination")?> '<?php echo $description; ?>'</a></p> 
     
    116120  </tr> 
    117121  <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> 
    119123    <td> 
    120124      <input type="text" name="destdial" value="<?php echo (isset($destdial) ? $destdial : ''); ?>">&nbsp;&nbsp; 
    121125      <?php if (isset($fclist)) { ?> 
    122126      <select id="fc" onchange="fc_onchange();"> 
    123       <option value="">--<?php echo _("featurecode"); ?>--</option> 
     127      <option value="">--<?php echo _("featurecode shortcuts"); ?>--</option> 
    124128      <?php 
    125129      foreach ($fclist as $fckey => $fcdesc) {