| 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">
First Name
</th>
<th class="text-center">
Date of Signup
<!-- <span class="shorting-action">
<i class="fa fa-sort-asc" aria-hidden="true"></i>
<i class="fa fa-sort-desc" aria-hidden="true"></i>
</span> -->
</th>
<th class="text-center">License</th>
<th class="text-center">Insurance</th>
<th class="text-center">
Action
</th>
</tr>
</thead>
<tbody id="custom-table">
<?php
if (is_array($RejectedDriverList) && count($RejectedDriverList) > 0) {
foreach ($RejectedDriverList as $key => $value) {
?>
<tr id="<?=$value['driver_id']?>_row">
<td class="text-center paddingtop16"><?=strlen($value['driver_first_name']) > 14 ? substr_replace($value['driver_first_name'], '...',15) : $value['driver_first_name'];?></td>
<td class="text-center paddingtop16"><?=date("M j, Y", strtotime($value['addeddate']));?></td>
<td class="text-center paddingtop10">
<?php if($value['driver_license_photo']!='' && $value['driver_license_photo']!=DRIVER_LICENSE_DEFAULT_IMAGE){ ?>
<a href="<?php echo base_url().DRIVER_LICENSE_PATH_THUMBS.$value['driver_license_photo']; ?>" target="_blank">Download</a>
<?php }else{ ?>
Pending
<?php } ?>
</td>
<td class="text-center paddingtop10">
<?php if($value['driver_insurance_photo']!='' && $value['driver_insurance_photo']!=DRIVER_INSURANCE_DEFAULT_IMAGE){ ?>
<a href="<?php echo base_url().DRIVER_INSURANCE_PATH_THUMBS.$value['driver_insurance_photo']; ?>" target="_blank">Download</a>
<?php }else{ ?>
Pending
<?php } ?>
</td>
<td class="text-center paddingtop10">
<button type="button" class="btn btn-default padding3" onclick="viewDriver('<?=$value['driver_id'];?>')"><i class="fa fa-search" aria-hidden="true"></i> View</button>
<div class="btn-group btn-group-circle mrtc">
<button onclick="ChangeActiveInactive('rt_driver','1','<?=$value['driver_id']?>', this);" type="button" class="newsolidbtn1 btn btn-outline green btn-sm">Approve</button>
<button onclick="ChangeActiveInactive('rt_driver','2','<?=$value['driver_id']?>', this);" type="button" class="newsolidbtn1 btn btn-outline red btn-sm active">Reject</button>
</div>
<span class="newsolidbtn1 btn btn-outline green btn-sm btn-circle" onclick="editDriver('<?=$value['driver_id']?>')"><i class="fa fa-pencil" aria-hidden="true"></i> Edit</span>
<span onclick="DeleteNow('rt_driver','<?=$value['driver_id']?>');" class="newsolidbtn1 btn btn-outline red btn-sm opo btn-circle"><i class="fa fa-trash-o" aria-hidden="true"></i> Delete</span>
</td>
</tr>
<?php
}
}
else {
?>
<tr>
<td class="text-center paddingtop16" colspan="5">No record found!</td>
</tr>
<?php } ?>
</tbody>
</table>
<!-- <div class="col-md-6 margintop20 margintop14 pull-right">
<?php echo $this->ajax_pagination->create_links(); ?>
</div> -->