コード例 #1
0
ファイル: show.php プロジェクト: marsa1985/kazabiz
echo JText::_('ORDER_DELIVERER');
?>
</th>
			<th><?php 
echo JText::_('UPDATED_AT');
?>
</th>
		</tr>
	</thead>
	<?php 
for ($i = 0; $i < count($rows); $i++) {
    $k = $i % 2;
    $row =& $rows[$i];
    $checked = JHTML::_('grid.id', $i, $row->id);
    $link = JRoute::_('index.php?option=' . $option . '&controller=order' . '&task=edit&orderId=' . $row->id . '&partial=1');
    $deliverer = EnmasseHelper::getDelivererName($row->id);
    ?>
	<tr class="<?php 
    echo "row{$k}";
    ?>
">
		<td align="center"><?php 
    echo $checked;
    ?>
</td>
		<td align="center">
			<a href="<?php 
    echo $link;
    ?>
"><?php 
    echo EnmasseHelper::displayOrderDisplayId($row->id);