Source for file table.tpl.php

Documentation is available at table.tpl.php

  1. <?php 
  2. /**
  3. @package Mambo
  4. @subpackage Languages
  5. @copyright  Refer to copyright.php
  6. @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
  7. @author Mambo Foundation Inc see README.php
  8. */ 
  9. defined'_VALID_MOS' or die'Direct Access to this location is not allowed.' )?>
  10. <table class="adminheading">
  11.     <tr>
  12.         <th class="langmanager">
  13.         <?php echo T_('Language Manager'?>
  14.         </th>
  15.         <td style="white-space: nowrap;text-align:right">
  16.         <?php echo mosCurrentDate();?>               
  17.         </td>
  18.     </tr>
  19. </table>
  20. <table class="adminlist">
  21. <tr>
  22.     <th width="30">&nbsp;
  23.     
  24.     </th>
  25.     <th width="25%" class="title">
  26.     <?php echo T_('Languages'?>
  27.     </th>
  28.     <th width="5%">
  29.     <?php echo T_('Default'?>
  30.     </th>
  31.     <th width="10%">
  32.     <?php echo T_('Version'?>
  33.     </th>
  34.     <th width="10%">
  35.     <?php echo T_('Date'?>
  36.     </th>
  37.     <th width="20%">
  38.     <?php echo T_('Author'?>
  39.     </th>
  40.     <th width="25%">
  41.     <?php echo T_('Author Email'?>
  42.     </th>
  43. </tr>    
  44. <?php for ($i=0$n=count$rows )$i $n$i++:  $row $rows[$i];?>
  45.     <tr class="<?php echo "row$i"?>">            
  46.         <td width="20">
  47.         <input type="radio" id="cb<?php echo $i;?>" name="lang[]" value="<?php echo $row->language?>" onClick="isChecked(this.checked);" />
  48.         </td>
  49.         <td width="25%">
  50.         <a href="#" onclick="hideMainMenu();return listItemTask('cb<?php echo $i;?>','edit')"><?php echo $row->name;?></a></td>
  51.         <td width="5%" align="center">            
  52.         <a href="javascript: void(0);" onClick="return listItemTask('cb<?php echo $i;?>','publish')">
  53.         <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');?>" />
  54.         </a>
  55.         </td>
  56.         <td align=center>
  57.         <?php echo $row->version?>
  58.         </td>
  59.         <td align=center>
  60.         <?php echo $row->creationdate?>
  61.         </td>
  62.         <td align=center>
  63.         <?php echo $row->author?>
  64.         </td>
  65.         <td align=center>
  66.         <?php echo $row->authorEmail?>
  67.         </td>
  68.     </tr>
  69. <?php endfor?>
  70. </table>

Documentation generated on Mon, 05 May 2008 16:22:55 +0400 by phpDocumentor 1.4.0