| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/icd/administrator/components/com_akeeba/views/profiles/tmpl/ |
Upload File : |
<?php
/**
* @package AkeebaBackup
* @copyright Copyright (c)2006-2011 Nicholas K. Dionysopoulos
* @license GNU General Public License version 3, or later
* @version $Id: default.php 409 2011-01-24 09:30:22Z nikosdion $
* @since 1.3
*/
defined('_JEXEC') or die('Restricted access');
?>
<form action="index.php" method="post" name="adminForm" id="adminForm">
<input type="hidden" name="option" value="com_akeeba" />
<input type="hidden" name="view" value="profiles" />
<input type="hidden" name="boxchecked" id="boxchecked" value="0" />
<input type="hidden" name="task" id="task" value="" />
<table class="adminlist">
<thead>
<tr>
<th width="20px"> </th>
<th width="20px">#</th>
<th><?php JText::_('PROFILE_COLLABEL_DESCRIPTION'); ?></th>
</tr>
</thead>
<tbody>
<?php
$i = 1;
foreach( $this->profiles as $profile ):
$id = JHTML::_('grid.id', ++$i, $profile->id);
$link = 'index.php?option='.JRequest::getCmd('option').'&view='.JRequest::getCmd('view').'&task=edit&id='.$profile->id.'&layout=default_edit';
$i = 1 - $i;
?>
<tr class="row<?php echo $i; ?>">
<td><?php echo $id; ?></td>
<td><?php echo $profile->id ?></td>
<td>
<a href="<?php echo $link; ?>">
<?php echo $profile->description; ?>
</a>
</td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</form>