View of /mambo/branches/4.6/administrator/components/com_installer/admin.installer.html.php
Parent Directory
|
Revision Log
Revision 194 -
(download)
(annotate)
Thu Jan 26 20:11:56 2006 UTC (7 years, 3 months ago) by csouza
File size: 3569 byte(s)
Thu Jan 26 20:11:56 2006 UTC (7 years, 3 months ago) by csouza
File size: 3569 byte(s)
verified and corrected all deprecated localization constants
<?php /** * @version $Id: admin.installer.html.php,v 1.1 2005/07/22 01:52:21 eddieajau Exp $ * @package Mambo * @subpackage Installer * @copyright (C) 2000 - 2005 Miro International Pty Ltd * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL * Mambo is Free Software */ /** ensure this file is being included by a parent file */ defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' ); function writableCell( $folder ) { echo '<tr>'; echo '<td class="item">' . $folder . '/</td>'; echo '<td align="left">'; echo is_writable( $GLOBALS['mosConfig_absolute_path'] . '/' . $folder ) ? '<b><span class="green">'.T_('Writeable').'</span></b>' : '<b><span class="red">'.T_('Unwriteable').'</span></b>' . '</td>'; echo '</tr>'; } /** * @package Mambo */ class HTML_installer { function showInstallForm( $title, $option, $element, $client = "", $p_startdir = "", $backLink="" ) { ?> <script language="javascript" type="text/javascript"> function submitbutton3(pressbutton) { var form = document.adminForm_dir; // do field validation if (form.userfile.value == ""){ alert( "<?php echo T_('Please select a directory') ?>" ); } else { form.submit(); } } </script> <form enctype="multipart/form-data" action="index2.php" method="post" name="filename"> <table class="adminheading"> <tr> <th class="install"> <?php echo $title;?> </th> <td align="right" nowrap="true"> <?php echo $backLink;?> </td> </tr> </table> <table class="adminform"> <tr> <th> <?php echo T_('Upload Package File') ?> </th> </tr> <tr> <td align="left"> <?php echo T_('Package File:')?> <input class="text_area" name="userfile" type="file" size="70"/> <input class="button" type="submit" value="<?php echo T_('Upload File & Install')?>" /> </td> </tr> </table> <input type="hidden" name="task" value="uploadfile"/> <input type="hidden" name="option" value="<?php echo $option;?>"/> <input type="hidden" name="element" value="<?php echo $element;?>"/> <input type="hidden" name="client" value="<?php echo $client;?>"/> </form> <br /> <form enctype="multipart/form-data" action="index2.php" method="post" name="adminForm_dir"> <table class="adminform"> <tr> <th> <?php echo T_('Install from directory')?> </th> </tr> <tr> <td align="left"> <?php echo T_('Install directory:')?> <input type="text" name="userfile" class="text_area" size="65" value="<?php echo $p_startdir; ?>"/> <input type="button" class="button" value="<?php echo T_('Install')?>" onclick="submitbutton3()" /> </td> </tr> </table> <input type="hidden" name="task" value="installfromdir" /> <input type="hidden" name="option" value="<?php echo $option;?>"/> <input type="hidden" name="element" value="<?php echo $element;?>"/> <input type="hidden" name="client" value="<?php echo $client;?>"/> </form> <?php } /** * @param string * @param string * @param string * @param string */ function showInstallMessage( $message, $title, $url ) { global $PHP_SELF; ?> <table class="adminheading"> <tr> <th class="install"> <?php echo $title; ?> </th> </tr> </table> <table class="adminform"> <tr> <td align="left"> <strong><?php echo $message; ?></strong> </td> </tr> <tr> <td colspan="2" align="center"> [ <a href="<?php echo $url;?>" style="font-size: 16px; font-weight: bold"><?php echo T_('Continue ...')?></a> ] </td> </tr> </table> <?php } } ?>
| ViewVC Help | |
| Powered by ViewVC 1.0.0 |

