<?php
/**
* @package com_vm_soa (WebServices for virtuemart)
* @author Mickael Cabanas (cabanas.mickael|at|gmail.com)
* @link http://sourceforge.net/projects/soa-virtuemart/
* @license GNU/GPL
*/
defined('_JEXEC') or die('Restricted access');
//echo '<br>'.__FILE__;
JRequest::getVar('trace')->trace_it(__FILE__." début", 1, 1);
?>
<!--
<form action="index.php" method="post" name="adminForm">
<div id="editcell">
<table class="adminlist"><thead><tr>
<th width="5"><?php echo JText::_( 'NUM' ); ?></th>
<th width="20"> <input type="checkbox" name="toggle" value=""
onclick="checkAll(<?php echo count( $this->items ); ?>);" /></th>
<th class="title"><?php echo JHTML::_('grid.sort', 'Auto', 'a.text',
@$lists['order_Dir'], @$this->lists['order'] ); ?></th>
<th width="5%" align="center"><?php echo JHTML::_('grid.sort', 'Published',
'a.published', @$this->lists['order_Dir'], @$this->lists['order'] ); ?>
</th>
<th width="1%" nowrap="nowrap"><?php echo JHTML::_('grid.sort', 'ID', 'a.id',
@$this->lists['order_Dir'], @$this->lists['order'] ); ?></th>
</tr></thead>
<?php
/*
$k = 0;
for ($i=0, $n=count( $this->items ); $i < $n; $i++){
$row = &$this->items[$i];
$published = JHTML::_('grid.published', $row, $i );
$link = JRoute::_( 'index.php?option=com_auto&controller=auto&task=
edit&cid[]='.$row->id );
?>
<tr class="<?php echo "row$k"; ?>">
<td></td>
<td></td>
<td><a href="<?php echo $link; ?>"><?php echo $row->type; ?></a></td>
<td align="center"><?php echo $published;?></td>
<td align="center"><?php echo $row->id; ?></td>
</tr>
<?php
$k = 1 - $k;
}
*/
?>
</table></div>
<input type="hidden" name="option" value="com_auto" />
<input type="hidden" name="task" value="" />
<input type="hidden" name="boxchecked" value="0" />
<input type="hidden" name="controller" value="auto" />
</form>
-->
<?php
JRequest::getVar('trace')->trace_it(__FILE__." fin", 1, -1);
?>