View of /mambo/branches/4.6/administrator/components/com_installer/module/module.html.php
Parent Directory
|
Revision Log
Revision 941 -
(download)
(annotate)
Thu Feb 1 05:54:14 2007 UTC (6 years, 3 months ago) by cauld
File size: 3300 byte(s)
Thu Feb 1 05:54:14 2007 UTC (6 years, 3 months ago) by cauld
File size: 3300 byte(s)
! 2007 copyright update
<?php /** * @package Mambo Open Source * @subpackage Installer * @copyright (C) 2005 - 2007 Mambo Foundation Inc. * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL * * Mambo was originally developed by Miro (www.miro.com.au) in 2000. Miro assigned the copyright in Mambo to The Mambo Foundation in 2005 to ensure * that Mambo remained free Open Source software owned and managed by the community. * 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.' ); class HTML_module { function showInstalledModules( &$rows, $option, &$xmlfile, &$lists ) { if (count($rows)) { ?> <form action="index2.php" method="post" name="adminForm"> <table class="adminheading"> <tr> <th class="install"> <?php echo T_('Installed Modules'); ?> </th> <td> <?php echo T_('Filter:'); ?> </td> <td width="right"> <?php echo $lists['filter'];?> </td> </tr> <tr> <td colspan="3"> <?php echo T_('Only those Modules that can be uninstalled are displayed - some Core Modules cannot be removed.'); ?> <br /><br /> </td> </tr> </table> <table class="adminlist"> <tr> <th width="20%" class="title"> <?php echo T_('Module File'); ?> </th> <th width="10%" align="left"> <?php echo T_('Client'); ?> </th> <th width="10%" align="left"> <?php echo T_('Author'); ?> </th> <th width="5%" align="center"> <?php echo T_('Version'); ?> </th> <th width="10%" align="center"> <?php echo T_('Date'); ?> </th> <th width="15%" align="left"> <?php echo T_('Author Email'); ?> </th> <th width="15%" align="left"> <?php echo T_('Author URL'); ?> </th> </tr> <?php $rc = 0; for ($i = 0, $n = count( $rows ); $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->module; ?></span></td> <td> <?php echo $row->client_id == "0" ? T_('Site') : T_('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 = $rc == 0 ? 1 : 0; } } else { ?> <td class="small"> <?php echo T_('No custom modules installed'); ?> </td> <?php } ?> </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="module" /> </form> <?php } } ?>
| ViewVC Help | |
| Powered by ViewVC 1.0.0 |

