| [ 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::_( 'DESCTEMPLATES' ); ?></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::_( 'Template' ); ?></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 <th class="title" width="5%"><?php echo JText::_( 'Compatibility' ); ?></th> 28 </tr> 29 </thead> 30 <tfoot> 31 <tr> 32 <td colspan="7"><?php echo $this->pagination->getListFooter(); ?></td> 33 </tr> 34 </tfoot> 35 <tbody> 36 <?php for ($i=0, $n=count($this->items), $rc=0; $i < $n; $i++, $rc = 1 - $rc) : ?> 37 <?php 38 $this->loadItem($i); 39 echo $this->loadTemplate('item'); 40 ?> 41 <?php endfor; ?> 42 </tbody> 43 </table> 44 <?php else : ?> 45 <?php echo JText::_( 'There are no custom templates installed' ); ?> 46 <?php endif; ?> 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="templates" /> 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 |