[ Index ]

PHP Cross Reference of Joomla 2.5.4 DE

title

Body

[close]

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

   1  <?php
   2  /**
   3   * @package        Joomla.Administrator
   4   * @subpackage    com_installer
   5   * @copyright    Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved.
   6   * @license        GNU General Public License version 2 or later; see LICENSE.txt
   7   * @since        1.6
   8   */
   9  
  10  // no direct access
  11  defined('_JEXEC') or die;
  12  ?>
  13  <tr class="<?php echo "row".$this->item->index % 2; ?>" <?php echo $this->item->style; ?>>
  14      <td><?php echo $this->pagination->getRowOffset($this->item->index); ?></td>
  15      <td>
  16              <input type="checkbox" id="cb<?php echo $this->item->index;?>" name="eid[]" value="<?php echo $this->item->extension_id; ?>" onclick="Joomla.isChecked(this.checked);" <?php echo $this->item->cbd; ?> />
  17  <!--        <input type="checkbox" id="cb<?php echo $this->item->index;?>" name="eid" value="<?php echo $this->item->extension_id; ?>" onclick="Joomla.isChecked(this.checked);" <?php echo $this->item->cbd; ?> />-->
  18          <span class="bold"><?php echo $this->item->name; ?></span>
  19      </td>
  20      <td>
  21          <?php echo $this->item->type ?>
  22      </td>
  23      <td class="center">
  24          <?php if (!$this->item->element) : ?>
  25          <strong>X</strong>
  26          <?php else : ?>
  27          <a href="index.php?option=com_installer&amp;type=manage&amp;task=<?php echo $this->item->task; ?>&amp;eid[]=<?php echo $this->item->extension_id; ?>&amp;limitstart=<?php echo $this->pagination->limitstart; ?>&amp;<?php echo JSession::getFormToken();?>=1"><?php echo JHtml::_('image', 'images/'.$this->item->img, $this->item->alt, array('title' => $this->item->action)); ?></a>
  28          <?php endif; ?>
  29      </td>
  30      <td class="center"><?php echo @$this->item->folder != '' ? $this->item->folder : 'N/A'; ?></td>
  31      <td class="center"><?php echo @$this->item->client != '' ? $this->item->client : 'N/A'; ?></td>
  32      <td>
  33          <span class="editlinktip hasTip" title="<?php echo addslashes(htmlspecialchars(JText::_('COM_INSTALLER_AUTHOR_INFORMATION').'::'.$this->item->author_info)); ?>">
  34              <?php echo @$this->item->author != '' ? $this->item->author : '&#160;'; ?>
  35          </span>
  36      </td>
  37  </tr>


Generated: Tue Apr 3 11:40:28 2012 Cross-referenced by PHPXref 0.7.1