| [ Index ] |
PHP Cross Reference of Joomla 1.5.26 DE |
[Summary view] [Print] [Text view]
1 <?php // no direct access 2 defined( '_JEXEC' ) or die( 'Restricted access' ); ?> 3 <form action="index.php" method="post" name="adminForm"> 4 <?php if ($this->ftp) : ?> 5 <?php echo $this->loadTemplate('ftp'); ?> 6 <?php endif; ?> 7 8 <table class="adminform"> 9 <tbody> 10 <tr> 11 <td width="100%"><?php echo JText::_( 'DESCLANGUAGES' ); ?></td> 12 <td align="right"><?php echo $this->lists->client; ?></td> 13 </tr> 14 </tbody> 15 </table> 16 17 <?php if (count($this->items)) : ?> 18 <table class="adminlist" cellspacing="1"> 19 <thead> 20 <tr> 21 <th class="title" width="10px"><?php echo JText::_( 'Num' ); ?></th> 22 <th class="title"><?php echo JText::_( 'Language' ); ?></th> 23 <th class="title" width="7%" align="center"><?php echo JText::_( 'Client' ); ?></th> 24 <th class="title" width="10%" align="center"><?php echo JText::_( 'Version' ); ?></th> 25 <th class="title" width="15%"><?php echo JText::_( 'Date' ); ?></th> 26 <th class="title" width="25%"><?php echo JText::_( 'Author' ); ?></th> 27 </tr> 28 </thead> 29 <tfoot> 30 <tr> 31 <td colspan="6"><?php echo $this->pagination->getListFooter(); ?></td> 32 </tr> 33 </tfoot> 34 <tbody> 35 <?php for ($i=0, $n=count($this->items), $rc=0; $i < $n; $i++, $rc = 1 - $rc) : ?> 36 <?php 37 $this->loadItem($i); 38 echo $this->loadTemplate('item'); 39 ?> 40 <?php endfor; ?> 41 </tbody> 42 </table> 43 <?php else : ?> 44 <?php echo JText::_( 'There are no custom languages installed' ); ?> 45 <?php endif; ?> 46 47 <input type="hidden" name="task" value="manage" /> 48 <input type="hidden" name="boxchecked" value="0" /> 49 <input type="hidden" name="option" value="com_installer" /> 50 <input type="hidden" name="type" value="languages" /> 51 <?php echo JHTML::_( 'form.token' ); ?> 52 </form>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Wed Mar 28 15:54:07 2012 | Cross-referenced by PHPXref 0.7.1 |