This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
MatritumCantat_Web/www/administrator/components/com_installer/admin.installer.html.php
2012-09-18 20:02:43 +00:00

144 lines
4.5 KiB
PHP

<?php
/**
* @version $Id: admin.installer.html.php 10002 2008-02-08 10:56:57Z willebil $
* @package Joomla
* @subpackage Installer
* @copyright Copyright (C) 2005 Open Source Matters. All rights reserved.
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/
// no direct access
defined( '_VALID_MOS' ) or die( 'Restricted access' );
function writableCell( $folder ) {
echo '<tr>';
echo '<td class="item">' . $folder . '/</td>';
echo '<td align="left">';
echo is_writable( $GLOBALS['mosConfig_absolute_path'] . '/' . $folder ) ? '<b><font color="green">Writeable</font></b>' : '<b><font color="red">Unwriteable</font></b>' . '</td>';
echo '</tr>';
}
/**
* @package Joomla
*/
class HTML_installer {
function showInstallForm( $title, $option, $element, $client = "", $p_startdir = "", $backLink="" ) {
if (!defined( '_INSTALL_3PD_WARN' )) {
define( '_INSTALL_3PD_WARN', 'Warning: Installing 3rd party extensions may compromise your server\'s security. Upgrading your Joomla! installation will not update your 3rd party extensions.<br />For more information on keeping your site secure, please see the <a href="http://forum.joomla.org/index.php/board,267.0.html" target="_blank" style="color: blue; text-decoration: underline;">Joomla! Security Forum</a>.' );
}
?>
<div style="margin: 10px 0px; padding: 5px 15px 5px 35px; min-height: 25px; border: 1px solid #cc0000; background: #ffffcc; text-align: left; color: red; font-weight: bold; background-image: url(../includes/js/ThemeOffice/warning.png); background-repeat: no-repeat; background-position: 10px 50%;">
<?php echo _INSTALL_3PD_WARN; ?>
</div>
<script language="javascript" type="text/javascript">
function submitbutton3(pressbutton) {
var form = document.adminForm_dir;
// do field validation
if (form.userfile.value == ""){
alert( "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="nowrap">
<?php echo $backLink;?>
</td>
</tr>
</table>
<table class="adminform">
<tr>
<th>
Upload Package File
</th>
</tr>
<tr>
<td align="left">
Package File:
<input class="text_area" name="userfile" type="file" size="70"/>
<input class="button" type="submit" value="Upload File &amp; 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;?>"/>
<input type="hidden" name="<?php echo josSpoofValue(); ?>" value="1" />
</form>
<br />
<form enctype="multipart/form-data" action="index2.php" method="post" name="adminForm_dir">
<table class="adminform">
<tr>
<th>
Install from directory
</th>
</tr>
<tr>
<td align="left">
Install directory:&nbsp;
<input type="text" name="userfile" class="text_area" size="65" value="<?php echo $p_startdir; ?>"/>&nbsp;
<input type="button" class="button" value="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;?>"/>
<input type="hidden" name="<?php echo josSpoofValue(); ?>" value="1" />
</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">
[&nbsp;<a href="<?php echo $url;?>" style="font-size: 16px; font-weight: bold">Continue ...</a>&nbsp;]
</td>
</tr>
</table>
<?php
}
}
?>