View of /mambo/branches/4.6/administrator/components/com_languages/views/templates/table.tpl.php
Parent Directory
|
Revision Log
Revision 1756 -
(download)
(annotate)
Thu May 28 06:41:09 2009 UTC (3 years, 11 months ago) by elpie
File size: 2270 byte(s)
Thu May 28 06:41:09 2009 UTC (3 years, 11 months ago) by elpie
File size: 2270 byte(s)
! Added back copyright date & note (which should not be needed, but which is) that copyright notices must be retained.
<?php
/**
* @package Mambo
* @subpackage Languages
* @author Mambo Foundation Inc see README.php
* @copyright (C) 2000 - 2009 Mambo Foundation Inc.
* See COPYRIGHT.php for copyright notices and details.
* @license GNU/GPL Version 2, see LICENSE.php
*
* Redistributions of files must retain the above copyright notice.
*
* Mambo is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; version 2 of the License.
*/
defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' ); ?>
<table class="adminheading">
<tr>
<th class="langmanager">
<?php echo T_('Language Manager') ?>
</th>
<td style="white-space: nowrap;text-align:right">
<?php echo mosCurrentDate();?>
</td>
</tr>
</table>
<table class="adminlist">
<tr>
<th width="30">
</th>
<th width="25%" class="title">
<?php echo T_('Languages') ?>
</th>
<th width="5%">
<?php echo T_('Default') ?>
</th>
<th width="10%">
<?php echo T_('Version') ?>
</th>
<th width="10%">
<?php echo T_('Date') ?>
</th>
<th width="20%">
<?php echo T_('Author') ?>
</th>
<th width="25%">
<?php echo T_('Author Email') ?>
</th>
</tr>
<?php for ($i=0, $n=count( $rows ); $i < $n; $i++) : $row = $rows[$i];?>
<tr class="<?php echo "row$i"; ?>">
<td width="20">
<input type="radio" id="cb<?php echo $i;?>" name="lang[]" value="<?php echo $row->language; ?>" onClick="isChecked(this.checked);" />
</td>
<td width="25%">
<a href="#" onclick="hideMainMenu();return listItemTask('cb<?php echo $i;?>','edit')"><?php echo $row->name;?></a></td>
<td width="5%" align="center">
<a href="javascript: void(0);" onClick="return listItemTask('cb<?php echo $i;?>','publish')">
<img src="images/<?php echo ( $row->published ) ? 'tick.png' : 'publish_x.png';?>" width="12" height="12" border="0" alt="<?php echo ( $row->published ) ? T_('Yes') : T_('No');?>" />
</a>
</td>
<td align=center>
<?php echo $row->version; ?>
</td>
<td align=center>
<?php echo $row->creationdate; ?>
</td>
<td align=center>
<?php echo $row->author; ?>
</td>
<td align=center>
<?php echo $row->authorEmail; ?>
</td>
</tr>
<?php endfor; ?>
</table>| ViewVC Help | |
| Powered by ViewVC 1.0.0 |

