git-svn-id: https://192.168.0.254/svn/Proyectos.MatritumCantat_Web/trunk@2 8e3496fd-7892-4c45-be36-0ff06e9dacc6
135 lines
3.4 KiB
PHP
135 lines
3.4 KiB
PHP
<?php
|
|
/**
|
|
* @version $Id: mambot.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' );
|
|
|
|
/**
|
|
* @package Joomla
|
|
* @subpackage Installer
|
|
*/
|
|
class HTML_mambot {
|
|
/**
|
|
* Displays the installed non-core Mambot
|
|
* @param array An array of mambot object
|
|
* @param strong The URL option
|
|
*/
|
|
function showInstalledMambots( &$rows, $option ) {
|
|
?>
|
|
<table class="adminheading">
|
|
<tr>
|
|
<th class="install">
|
|
Installed Mambots
|
|
</th>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
Only those Mambots that can be uninstalled are displayed - some Core Mambots cannot be removed.
|
|
<br /><br />
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<?php
|
|
if ( count( $rows ) ) { ?>
|
|
<form action="index2.php" method="post" name="adminForm">
|
|
<table class="adminlist">
|
|
<tr>
|
|
<th width="20%" class="title">
|
|
Mambot
|
|
</th>
|
|
<th width="10%" class="title">
|
|
Type
|
|
</th>
|
|
<!--
|
|
Currently Unsupported
|
|
<th width="10%" align="left">
|
|
Client
|
|
</th>
|
|
-->
|
|
<th width="10%" align="left">
|
|
Author
|
|
</th>
|
|
<th width="5%" align="center">
|
|
Version
|
|
</th>
|
|
<th width="10%" align="center">
|
|
Date
|
|
</th>
|
|
<th width="15%" align="left">
|
|
Author E-mail
|
|
</th>
|
|
<th width="15%" align="left">
|
|
Author URL
|
|
</th>
|
|
</tr>
|
|
<?php
|
|
$rc = 0;
|
|
$n = count( $rows );
|
|
for ($i = 0; $i < $n; $i++) {
|
|
$row =& $rows[$i];
|
|
?>
|
|
<tr class="<?php echo "row$rc"; ?>">
|
|
<td>
|
|
<input type="radio" id="cb<?php echo $i;?>" name="cid[]" value="<?php echo $row->id; ?>" onclick="isChecked(this.checked);">
|
|
<span class="bold">
|
|
<?php echo $row->name; ?>
|
|
</span>
|
|
</td>
|
|
<td>
|
|
<?php echo $row->folder; ?>
|
|
</td>
|
|
<!--
|
|
Currently Unsupported
|
|
<td>
|
|
<?php //echo $row->client_id == "0" ? 'Site' : 'Administrator'; ?>
|
|
</td>
|
|
-->
|
|
<td>
|
|
<?php echo @$row->author != '' ? $row->author : " "; ?>
|
|
</td>
|
|
<td align="center">
|
|
<?php echo @$row->version != '' ? $row->version : " "; ?>
|
|
</td>
|
|
<td align="center">
|
|
<?php echo @$row->creationdate != '' ? $row->creationdate : " "; ?>
|
|
</td>
|
|
<td>
|
|
<?php echo @$row->authorEmail != '' ? $row->authorEmail : " "; ?>
|
|
</td>
|
|
<td>
|
|
<?php echo @$row->authorUrl != "" ? "<a href=\"" .(substr( $row->authorUrl, 0, 7) == 'http://' ? $row->authorUrl : 'http://'.$row->authorUrl). "\" target=\"_blank\">$row->authorUrl</a>" : " ";?>
|
|
</td>
|
|
</tr>
|
|
<?php
|
|
$rc = 1 - $rc;
|
|
}
|
|
?>
|
|
</table>
|
|
|
|
<input type="hidden" name="task" value="" />
|
|
<input type="hidden" name="boxchecked" value="0" />
|
|
<input type="hidden" name="option" value="com_installer" />
|
|
<input type="hidden" name="element" value="mambot" />
|
|
<input type="hidden" name="<?php echo josSpoofValue(); ?>" value="1" />
|
|
</form>
|
|
<?php
|
|
} else {
|
|
?>
|
|
There are no non-core, custom mambots installed.
|
|
<?php
|
|
}
|
|
}
|
|
}
|
|
?>
|