Viewing file: lots_list_pagi.php (4.88 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $start = $startoffset * $limit + 1; $end = ($startoffset +1 )* $limit ;
if($total<$start) $start = $total;
if($total<=$end) $end = $total; ?>
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="tableBorder"> <tr> <td class="mainTableTitle">
<span> »</span> Lots Name List Total : <?=$total?> Showing <?=$start?> to <?=$end?>
</td> </tr>
<tr> <td>
<!-- Clinets List -->
<table class="gbTable">
<tr class="header"> <td width="2%"><div align="left" style="padding-left:5px;">NR</div></td> <td width="38%"><div align="left" style="padding-left:5px;">Lots Name</div></td> <td width="10%"><div align="left" style="padding-left:5px;">Type</div></td> <td width="12%"><div align="left" style="padding-left:5px;">Reseller</div></td> <td width="6%"><div align="center" style="padding-left:5px;">NumPin</div></td> <td width="12%"><div align="left" style="padding-left:5px;">Date</div></td> <td width="5%"><div align="center" style="padding-left:5px;">Actived</div></td> <td width="6%"><div align="center" style="padding-left:5px;">Inactived</div></td> <td width="5%"><div align="center" style="padding-left:5px;">Export</div></td> <td width="3%"><div align="center" style="padding-left:0px;">Del</div></td> </tr>
<? $i=1; if(is_array($lotsNameList)) { foreach($lotsNameList as $row) { $passid =$i;
if($row->clienttype == SIP_USER) $type = "GK Register Client"; else $type = "IVR Client";
$parent = $this->generallib->getResellerLogin($row->id_reseller,1);
?>
<?
if($i%2==0) {
$str = " <TR id = \"$passid\" class=\"row2 \" onmousedown=\"rowPointer(this, 'down', 'row2', 'rowSel', 'rowMark')\" onmouseover=\"rowPointer(this, 'over', 'row2', 'rowSel', 'rowMark')\" onmouseout=\"rowPointer(this, 'out', 'row2', 'rowSel', 'rowMark')\">";
} else { $str = " <TR id = \"$passid\" class=\"row1 \" onmousedown=\"rowPointer(this, 'down', 'row1', 'rowSel', 'rowMark')\" onmouseover=\"rowPointer(this, 'over', 'row1', 'rowSel', 'rowMark')\" onmouseout=\"rowPointer(this, 'out', 'row1', 'rowSel', 'rowMark')\">"; }
echo $str;
?>
<td align=center class="tableBorderAll" style="padding-left:0px;"><input name="checkActive" type="checkbox" id="checkActive" value="1" /></td> <td align=left class="tableBorderAll" style="padding-left:5px;"><?=$row->description?></td> <td align=left class="tableBorderAll" style="padding-left:5px;"><?=$type?></td> <td align=left class="tableBorderAll" style="padding-left:5px;"><?=$parent?></td> <td align=center class="tableBorderAll" style="padding-left:5px;"><?=$row->numpin?></td> <td align=left class="tableBorderAll" style="padding-left:5px;"><?=$row->creationdate?></td> <td align=center class="tableBorderAll" style="padding-left:0px;"> <a href="<?=site_url('client/activeLot/'.$row->lot_id.'/'.$row->clienttype)?>" onclick="return confirm('Do you really want to active this Lot')" title="Active Lot"> <img src="<?=base_url()?>images/active.gif" border="0" height="18"> </a> </td> <td align=center class="tableBorderAll" style="padding-left:0px;"> <a href="<?=site_url('client/inactiveLot/'.$row->lot_id.'/'.$row->clienttype)?>" onclick="return confirm('Do you really want to deactive this Lot')" title="Inactive Lot"> <img src="<?=base_url()?>images/inactive.gif" border="0" height="18"> </a> </td>
<td align=center class="tableBorderAll" style="padding-left:0px;"> <a href="<?=site_url('client/exportLot/'.$row->lot_id.'/'.$row->clienttype)?>" title="Export" > <img src="<?=base_url()?>images/exprot.gif" border="0" height="18"> </a> </td>
<td align=center style="padding-left:0px;"> <a href="<?=site_url('client/deleteLot/'.$row->lot_id.'/'.$row->clienttype)?>" onclick="return confirm('Do you really want to remove this Lot')" title="Delete" > <img src="<?=base_url()?>images/remove.png" border="0" height="16"> </a> </td>
</tr>
<? $i++; }
}
?>
</table>
<!-- End Clients List -->
</td> </tr>
<tr> <td align="center" style="padding-top:5px;">
<input type="hidden" name="id_reseller" id="id_reseller" value="<?=$id_reseller?>" /> <input type="hidden" name="description" id="description" value="<?=$description?>" /> <input type="hidden" name="clienttype" id="clienttype" value="<?=$clienttype?>" /> <input type="hidden" name="limit" id="limit" value="<?=$limit?>" /> <input type="hidden" name="startoffset" id="startoffset" value="<?=$startoffset?>" />
<?
$p = new paginationClass; $p->Items($total);
if($startoffset==0) $startoffset = 1;
$p->limit($limit); $p->target("paginator.php"); $p->currentPage($startoffset); $p->adjacents(3); $p->show();
?>
</td> </tr>
</table>
|