[ Index ]

PHP Cross Reference of Joomla 1.5.26 DE

title

Body

[close]

/administrator/components/com_installer/views/components/tmpl/ -> default.php (source)

   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->showMessage) : ?>
   5          <?php echo $this->loadTemplate('message'); ?>
   6      <?php endif; ?>
   7  
   8      <?php if ($this->ftp) : ?>
   9          <?php echo $this->loadTemplate('ftp'); ?>
  10      <?php endif; ?>
  11  
  12      <?php if (count($this->items)) : ?>
  13      <table class="adminlist" cellspacing="1">
  14          <thead>
  15              <tr>
  16                  <th class="title" width="10px"><?php echo JText::_( 'Num' ); ?></th>
  17                  <th class="title" nowrap="nowrap"><?php echo JText::_( 'Currently Installed' ); ?></th>
  18                  <th class="title" width="5%" align="center"><?php echo JText::_( 'Enabled' ); ?></th>
  19                  <th class="title" width="10%" align="center"><?php echo JText::_( 'Version' ); ?></th>
  20                  <th class="title" width="15%"><?php echo JText::_( 'Date' ); ?></th>
  21                  <th class="title" width="25%"><?php echo JText::_( 'Author' ); ?></th>
  22                  <th class="title" width="5%"><?php echo JText::_( 'Compatibility' ); ?></th>
  23              </tr>
  24          </thead>
  25          <tfoot>
  26              <tr>
  27              <td colspan="7"><?php echo $this->pagination->getListFooter(); ?></td>
  28              </tr>
  29          </tfoot>
  30          <tbody>
  31          <?php for ($i=0, $n=count($this->items), $rc=0; $i < $n; $i++, $rc = 1 - $rc) : ?>
  32              <?php
  33                  $this->loadItem($i);
  34                  echo $this->loadTemplate('item');
  35              ?>
  36          <?php endfor; ?>
  37          </tbody>
  38      </table>
  39      <?php else : ?>
  40          <?php echo JText::_( 'There are no custom components installed' ); ?>
  41      <?php endif; ?>
  42  
  43      <input type="hidden" name="task" value="manage" />
  44      <input type="hidden" name="boxchecked" value="0" />
  45      <input type="hidden" name="option" value="com_installer" />
  46      <input type="hidden" name="type" value="components" />
  47      <?php echo JHTML::_( 'form.token' ); ?>
  48  </form>


Generated: Wed Mar 28 15:54:07 2012 Cross-referenced by PHPXref 0.7.1