| Current Path : /home/sunflowe/www2/j15/tmp/install_4f118f48ca3c3/backend/views/profiles/tmpl/ |
| Current File : /home/sunflowe/www2/j15/tmp/install_4f118f48ca3c3/backend/views/profiles/tmpl/default.php |
<?php
/**
* @package AkeebaBackup
* @copyright Copyright (c)2009-2012 Nicholas K. Dionysopoulos
* @license GNU General Public License version 3, or later
* @version $Id: default.php 739 2011-06-15 14:11:10Z 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="" />
<?php echo JHTML::_( 'form.token' ); ?>
<fieldset>
<legend>
<span class="ui-icon ui-icon-info" style="display:inline-block;"> </span>
<?php echo JText::_('CONFIG_LABEL_INFORMATION') ?>
</legend>
<div>
<b><?php echo JText::_('CPANEL_PROFILE_TITLE'); ?></b>: #<?php echo $this->profileid; ?> <?php echo $this->profilename; ?>
</div>
</fieldset>
<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>