Files
@ 28db4569e7b0
Branch filter:
Location: hot67beta/administrator/components/com_installer/views/languages/tmpl/default.php - annotation
28db4569e7b0
1.6 KiB
text/x-php
header stuff
c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 | <form action="index.php" method="post" name="adminForm">
<?php if ($this->ftp) : ?>
<?php echo $this->loadTemplate('ftp'); ?>
<?php endif; ?>
<table class="adminform">
<tbody>
<tr>
<td width="100%"><?php echo JText::_( 'DESCLANGUAGES' ); ?></td>
<td align="right"><?php echo $this->lists->client; ?></td>
</tr>
</tbody>
</table>
<?php if (count($this->items)) : ?>
<table class="adminlist" cellspacing="1">
<thead>
<tr>
<th class="title" width="10px"><?php echo JText::_( 'Num' ); ?></th>
<th class="title"><?php echo JText::_( 'Language' ); ?></th>
<th class="title" width="7%" align="center"><?php echo JText::_( 'Client' ); ?></th>
<th class="title" width="10%" align="center"><?php echo JText::_( 'Version' ); ?></th>
<th class="title" width="15%"><?php echo JText::_( 'Date' ); ?></th>
<th class="title" width="25%"><?php echo JText::_( 'Author' ); ?></th>
</tr>
</thead>
<tfoot>
<tr>
<td colspan="6"><?php echo $this->pagination->getListFooter(); ?></td>
</tr>
</tfoot>
<tbody>
<?php for ($i=0, $n=count($this->items), $rc=0; $i < $n; $i++, $rc = 1 - $rc) : ?>
<?php
$this->loadItem($i);
echo $this->loadTemplate('item');
?>
<?php endfor; ?>
</tbody>
</table>
<?php else : ?>
<?php echo JText::_( 'There are no custom languages installed' ); ?>
<?php endif; ?>
<input type="hidden" name="task" value="manage" />
<input type="hidden" name="boxchecked" value="0" />
<input type="hidden" name="option" value="com_installer" />
<input type="hidden" name="type" value="languages" />
<?php echo JHTML::_( 'form.token' ); ?>
</form>
|