Changeset 535

Show
Ignore:
Timestamp:
07/22/08 23:07:54 (2 months ago)
Author:
thierry
Message:

Fonctionnalité : Modifier l'URL du site de mise à jour du composant par un administrateur dans la configuration du composant.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • com_asradius/trunk/admin.asradius.html.php

    r530 r535  
    525525                        <td align="left"><?= _ASR_ALLOW_MODESENDEMAIL_DESC; ?></td> 
    526526                </tr> 
     527<?php if (($my->usertype == 'Administrator') || ($my->usertype == 'Super Administrator')) { ?>   
     528                <tr> 
     529                        <td width="185"><?= _ASR_MAJ_COMPONENT; ?></td> 
     530                    <td><input class="inputbox" type="text" name="majurl" size="45" value="<?= $lists['majurl'];?>"/></td> 
     531                    <td align="left"><?= _ASR_MAJ_COMPONENT_DESC; ?></td> 
     532                </tr> 
     533<?php } ?> 
    527534    </table> 
    528535        <?php 
  • com_asradius/trunk/admin.asradius.php

    r530 r535  
    204204        $lists['nasQuery'] = $confManager->_config->nasQuery; 
    205205        $lists['scriptPathDisconnect'] = $confManager->_config->scriptPathDisconnect; 
     206        $lists['majurl'] = $confManager->_config->majurl; 
    206207 
    207208         
  • com_asradius/trunk/asradius.config.php

    r534 r535  
    4343// Derniere modification le : Thu, 2008-May-22 11:38 
    4444// par : admin 
    45 var $version = "1.4.1.0"; 
     45var $version = "1.4.2.0"; 
    4646var $phase = "beta"; 
    4747var $authorMail = "thierry@airmesh.eu"; 
  • com_asradius/trunk/asradius.xml

    r534 r535  
    88  <authorEmail>thierry@airmesh.eu</authorEmail> 
    99  <authorUrl>www.airmesh.eu</authorUrl> 
    10   <version>1.4.1.0</version> 
     10  <version>1.4.2.0</version> 
    1111    <installfile>install.asradius.php</installfile> 
    1212    <uninstallfile>uninstall.asradius.php</uninstallfile> 
  • com_asradius/trunk/changelog.txt

    r534 r535  
    3535 */ 
    3636 
    37  
    38 24 juillet 2008 
     3722 juillet 2008 
     38Version 1.4.2.0 
     39Composant compatible Joomla 1.0.X 
     40Phase : Béta 
     41 
     42Possibilité pour un administrateur de reconfigurer l'URL du site WEB de mise 
     43à jour du composant. (Pas de slash à la fin de l'URL). 
     44_________________________________________________________________________ 
     45 
     4621 juillet 2008 
    3947Version 1.4.1.0 
    4048Composant compatible Joomla 1.0.X 
     
    4452du composant dans le gestonnaire d'installation de Joomla. 
    4553_________________________________________________________________________ 
    46 24 juillet 2008 
     5421 juillet 2008 
    4755Version 1.4.0.0 
    4856Composant compatible Joomla 1.0.X 
  • com_asradius/trunk/lang/admin.french.php

    r530 r535  
    231231 
    232232define( '_ASR_DOWNLOAD_MAJ', 'Téléchargement de la mise à jour ...'); 
     233define( '_ASR_MAJ_COMPONENT', 'Adresse du site de mise à jour'); 
     234define( '_ASR_MAJ_COMPONENT_DESC', 'Adresse du site WEB pour la mise à jour du composant. Pas de slash(/) à la fin de l\'adresse'); 
    233235?>