| Server IP : 162.214.74.102 / Your IP : 216.73.216.36 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/public_html/lrsys_projetos/sopizzas/application/views/customer/ |
Upload File : |
<!--Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header address-book">
<h1><?php echo $this->lang->line('My_Favorites');?> <!-- <button onclick="window.location.href='<?php echo base_url(); ?>customer/dashboard/restaurant_map_view'" type="button" class="btn btn-info Custom-btn pull-right" style="border-radius: 32px !important;">Find All Restaurants</button> -->
</h1>
</section>
<!-- Main content -->
<section class="content">
<!-- tab section -->
<div class="nav-tabs-custom">
<div class="tab-content no-padding">
<div id="home" class="tab-pane fade in active">
<div class="box-body">
<div class="table-responsive">
<table class="table no-margin table-hover">
<thead>
<tr class="label-info bg_color">
<th><?php echo $this->lang->line('Sl_No');?></th>
<th><?php echo $this->lang->line('Restaurant_Name');?></th>
<th><?php echo $this->lang->line('Added_Date');?></th>
<!-- <th>Action</th> -->
</tr>
</thead>
<tbody>
<?php $export=''; if(is_array($fav_list) && sizeof($fav_list)>0){
foreach ($fav_list as $key => $value) {
?>
<tr>
<td class="text-center padd12"><?=$key+1?></td>
<td class="text-center padd12"><a href="<?=base_url().'restaurantviewpage/'.$value['restaurant_seourl']?>" target="blank"><?=$value['name']?></a></td>
<td class="text-center padd12"><?=date("m.d.Y", strtotime($value['adddate']));?>/<?=date("g:i A", strtotime($value['adddate']));?></td>
<!-- <td class="text-center padd12">
<span class="newsolidbtn1 btn btn-outline green btn-sm opo addressEdit opened btn-circle view"><i class="fa fa-pencil" aria-hidden="true"></i> Edit</span>
<span 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 colspan="4" class="text-center padd12">No data found!</td>
</tr>
<?php } ?>
</tbody>
</table>
</div><!-- /.table-responsive -->
</div>
</div>
</div>
</div>
</div>
</div>
<!-- ./tab section -->
<div class="clearfix"></div>
</section><!-- /.content -->
</div>