File: /home/xedaptot/naniguide.com/deals/admin/views/ads.view.php
<?php require 'sidebar.php'; ?>
<script type="text/javascript">
$(document).ready(function(){
$('#table_id').dataTable({
"bProcessing": true,
"sAjaxSource": "../controller/get_ads.php",
"responsive": true,
"bPaginate":true,
"sPaginationType":"full_numbers",
"iDisplayLength": 10,
"aoColumns": [
{ mData: 'ad_id', "width": "5%", "className": "text-center" },
{ mData: 'ad_title'},
{ mData: 'ad_position', "width": "12%", "className": "text-capitalize" },
{ "mData": null , "width": "10%", "className":"status text-center",
"mRender" : function (data) {
if (data.ad_status == 1) {
return '<span class="badge badge-pill bg-success"><i class="dripicons-checkmark"></i></span>';
}else{
return '<span class="badge badge-pill bg-danger"><i class="dripicons-cross"></i></span>';
}
}
},
{ "mData": null ,
"width": "14%",
"className": "text-center",
'orderable': false,
'searchable': false,
"mRender" : function (data) {
return "<a class='btn btn-small btn-primary' href='../controller/edit_ad.php?id="+data.ad_id+"'>"+EDITITEM+"</a> <a class='btn btn-small btn-danger btn-delete deleteItem' data-url='../controller/delete_ad.php?id="+data.ad_id+"'>"+DELETEITEM+"</a>";}
}
]
});
});
</script>
<!--Page Container-->
<section class="page-container">
<div class="page-content-wrapper">
<!--Main Content-->
<div class="content sm-gutter">
<div class="container-fluid padding-25 sm-padding-10">
<div class="section-title">
<h5 class="text-truncate"><?php echo _ADS; ?></h5>
</div>
<div class="row">
<div class="col-12 c-col-12">
<button type="button" data-toggle="modal" data-target="#add_data_Modal" class="btn btn-primary"><i class="fa fa-plus add-new-i"></i> <?php echo _ADDITEM; ?></button>
</div>
<div class="col-12">
<div class="block table-block mb-4 c-4">
<div class="alert alert-danger" role="alert">
<?php echo _DISABLEADBLOCK; ?>
</div>
<div class="row">
<div class="table-responsive">
<table id="table_id" class="table table-striped table-bordered" cellspacing="0" width="100%" style="border-radius: 5px;">
<thead>
<tr>
<th><?php echo _TABLEFIELDID; ?></th>
<th><?php echo _TABLEFIELDTITLE; ?></th>
<th><?php echo _TABLEFIELDLOCATION; ?></th>
<th><?php echo _TABLEFIELDSTATUS; ?></th>
<th><?php echo _TABLEFIELDACTIONS; ?></th>
</tr>
</thead>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<?php require 'new.ad.view.php'; ?>