| Server IP : 162.214.74.102 / Your IP : 216.73.216.139 Web Server : Apache System : Linux dedi-4363141.lrsys.com.br 3.10.0-1160.119.1.el7.tuxcare.els25.x86_64 #1 SMP Wed Oct 1 17:37:27 UTC 2025 x86_64 User : lrsys ( 1015) PHP Version : 5.6.40 Disable Function : exec,passthru,shell_exec,system MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/lrsys/www/lrsys_projetos/sopizzas/application/views/superadmin/ |
Upload File : |
<table class="table no-margin table-hover">
<thead>
<tr class="label-info labelinfo1">
<th class="text-center"><?php echo $this->lang->line('SNo');?></th>
<th class="text-center">
<?php echo $this->lang->line('CustomerName');?><span class="shorting-action">
<i onclick="getData('0','2')" class="fa fa-sort-asc" aria-hidden="true"></i>
<i onclick="getData('0','3')" class="fa fa-sort-desc" aria-hidden="true"></i>
</span>
</th>
<th class="text-center">
<?php echo $this->lang->line('EmailId');?><span class="shorting-action">
<i onclick="getData('0','4')" class="fa fa-sort-asc" aria-hidden="true"></i>
<i onclick="getData('0','5')" class="fa fa-sort-desc" aria-hidden="true"></i>
</span>
</th>
<th class="text-center">
Phone<span class="shorting-action">
<i onclick="getData('0','6')" class="fa fa-sort-asc" aria-hidden="true"></i>
<i onclick="getData('0','7')" class="fa fa-sort-desc" aria-hidden="true"></i>
</span>
</th>
<th class="text-center"><?php echo $this->lang->line('AddedDate');?></th>
<th class="text-center" style="width: 145px;">Status</th>
<th class="text-center"><?php echo $this->lang->line('Action');?></th>
</tr>
</thead>
<tbody>
<?php if(is_array($CustomerList) && sizeof($CustomerList)>0){
foreach ($CustomerList as $key => $value) {
?>
<tr id="<?=$value['customer_id']?>_row">
<!--<td class="text-center paddingtop16"><input class="minimal" value="68" type="checkbox"></td>-->
<?php
if (isset($perPageCount) && $perPageCount != '') {
?>
<td class="text-center paddingtop16"><?=$perPageCount+1?></td>
<?php
$perPageCount++;
}
else {
?>
<td class="text-center paddingtop16"><?=$key+1?></td>
<?php
}
?>
<!--<td align="left" class="listCont"><a href="zipcodeManage.php?sc="></a></td>-->
<td class="text-center paddingtop16"><?=$value['customer_name']." ".$value['customer_lastname']?></td>
<td class="text-center paddingtop16"><?=$value['customer_email']?></td>
<td class="text-center paddingtop16"><?=$value['customer_phone']?></td>
<!--<td align="left" class="listCont">200101</td>-->
<td class="text-center paddingtop16"><?=date("M j, Y", strtotime($value['addeddate']));?></td>
<td class="text-center paddingtop10">
<div class="btn-group btn-group-circle">
<button onclick="ChangeActiveInactive('rt_customer','1','<?=$value['customer_id']?>', this);" type="button" class="newsolidbtn1 btn btn-outline green btn-sm <?=$value['status']=='1'?'active':''?>"><?php echo $this->lang->line('Active');?></button>
<button onclick="ChangeActiveInactive('rt_customer','0','<?=$value['customer_id']?>', this);" type="button" class="newsolidbtn1 btn btn-outline red btn-sm <?=$value['status']=='0'?'active':''?>"><?php echo $this->lang->line('Inactive');?></button>
</div>
</td>
<td class="text-center paddingtop10">
<span class="newsolidbtn1 btn btn-outline green btn-sm btn-circle" onclick="editCustomer('<?=$value['customer_id']?>', '<?=$value['customer_name']?>', '<?=$value['customer_lastname']?>', '<?=$value['customer_buildtype']?>', '<?=$value['customer_street']?>', '<?=$value['customer_state']?>', '<?=$value['customer_city']?>', '<?=$value['customer_zip']?>', '<?=$value['customer_phone']?>', '<?=$value['customer_landline']?>', '<?=$value['customer_landmark']?>', '<?=$value['customer_addresslabel']?>', '<?=$value['customer_email']?>', '<?=$value['customer_password']?>')"><i class="fa fa-pencil" aria-hidden="true"></i> <?php echo $this->lang->line('Edit');?></span>
<span onclick="DeleteNow('rt_customer','<?=$value['customer_id']?>');" class="newsolidbtn1 btn btn-outline red btn-sm opo btn-circle"><i class="fa fa-trash-o" aria-hidden="true"></i> <?php echo $this->lang->line('Delete');?></span>
</td>
</tr>
<?php } } else { ?>
<tr>
<td colspan='7' class="text-center"><?php echo $this->lang->line('No_found');?></td>
</tr>
<?php
}
?>
</tbody>
</table>
<!--<div class="col-md-2 col-sm-2 col-xs-12 margintop10" style="margin-top:10px;">-->
<!-- <button class="btn btn-sm btn-success filter-submit"><i class="fa fa-file-pdf-o"></i> Export to CSV</button>-->
<!--</div>-->
<div>
<?php echo $this->ajax_pagination->create_links(); ?>
</div>