forked from INUI-Dev/XtreamUI
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
34 changed files
with
12,550 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,140 @@ | ||
<?php | ||
include "functions.php"; | ||
if (!isset($_SESSION['user_id'])) { header("Location: ./login.php"); exit; } | ||
$rBouquets = getBouquets(); | ||
include "header.php"; | ||
?> <div class="wrapper"> | ||
<div class="container-fluid"> | ||
|
||
<!-- start page title --> | ||
<div class="row"> | ||
<div class="col-12"> | ||
<div class="page-title-box"> | ||
<div class="page-title-right"> | ||
<ol class="breadcrumb m-0"> | ||
<li> | ||
<a href="bouquet.php"> | ||
<button type="button" class="btn btn-success waves-effect waves-light btn-sm"> | ||
<i class="mdi mdi-plus"></i> Add Bouquet | ||
</button> | ||
</a> | ||
</li> | ||
</ol> | ||
</div> | ||
<h4 class="page-title">Bouquets</h4> | ||
</div> | ||
</div> | ||
</div> | ||
<!-- end page title --> | ||
|
||
<div class="row"> | ||
<div class="col-12"> | ||
<div class="card"> | ||
<div class="card-body" style="overflow-x:auto;"> | ||
<table id="datatable" class="table dt-responsive nowrap"> | ||
<thead> | ||
<tr> | ||
<th class="text-center">ID</th> | ||
<th>Bouquet Name</th> | ||
<th class="text-center">Channels</th> | ||
<th class="text-center">Series</th> | ||
<th class="text-center">Actions</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<?php foreach ($rBouquets as $rBouquet) { ?> | ||
<tr id="bouquet-<?=$rBouquet["id"]?>"> | ||
<td class="text-center"><?=$rBouquet["id"]?></td> | ||
<td><?=$rBouquet["bouquet_name"]?></td> | ||
<td class="text-center"><?=count(json_decode($rBouquet["bouquet_channels"], True))?></td> | ||
<td class="text-center"><?=count(json_decode($rBouquet["bouquet_series"], True))?></td> | ||
<td class="text-center"> | ||
<a href="./bouquet.php?id=<?=$rBouquet["id"]?>"><button type="button" data-toggle="tooltip" data-placement="top" title="" data-original-title="Edit Bouquet" class="btn btn-outline-info waves-effect waves-light btn-xs"><i class="mdi mdi-pencil-outline"></i></button></a> | ||
<button type="button" data-toggle="tooltip" data-placement="top" title="" data-original-title="Delete Bouquet" class="btn btn-outline-danger waves-effect waves-light btn-xs" onClick="api(<?=$rBouquet["id"]?>, 'delete');""><i class="mdi mdi-close"></i></button> | ||
</td> | ||
</tr> | ||
<?php } ?> | ||
</tbody> | ||
</table> | ||
|
||
</div> <!-- end card body--> | ||
</div> <!-- end card --> | ||
</div><!-- end col--> | ||
</div> | ||
<!-- end row--> | ||
</div> <!-- end container --> | ||
</div> | ||
<!-- end wrapper --> | ||
<!-- Footer Start --> | ||
<footer class="footer"> | ||
<div class="container-fluid"> | ||
<div class="row"> | ||
<div class="col-md-12 text-center">Xtream Codes - Admin UI</div> | ||
</div> | ||
</div> | ||
</footer> | ||
<!-- end Footer --> | ||
|
||
<!-- Vendor js --> | ||
<script src="assets/js/vendor.min.js"></script> | ||
<script src="assets/libs/jquery-toast/jquery.toast.min.js"></script> | ||
|
||
<!-- third party js --> | ||
<script src="assets/libs/datatables/jquery.dataTables.min.js"></script> | ||
<script src="assets/libs/datatables/dataTables.bootstrap4.js"></script> | ||
<script src="assets/libs/datatables/dataTables.responsive.min.js"></script> | ||
<script src="assets/libs/datatables/responsive.bootstrap4.min.js"></script> | ||
<script src="assets/libs/datatables/dataTables.buttons.min.js"></script> | ||
<script src="assets/libs/datatables/buttons.bootstrap4.min.js"></script> | ||
<script src="assets/libs/datatables/buttons.html5.min.js"></script> | ||
<script src="assets/libs/datatables/buttons.flash.min.js"></script> | ||
<script src="assets/libs/datatables/buttons.print.min.js"></script> | ||
<script src="assets/libs/datatables/dataTables.keyTable.min.js"></script> | ||
<script src="assets/libs/datatables/dataTables.select.min.js"></script> | ||
<script src="assets/libs/pdfmake/pdfmake.min.js"></script> | ||
<script src="assets/libs/pdfmake/vfs_fonts.js"></script> | ||
<!-- third party js ends --> | ||
|
||
<script> | ||
function api(rID, rType) { | ||
if (rType == "delete") { | ||
if (confirm('Are you sure you want to delete this bouquet? This cannot be undone!') == false) { | ||
return; | ||
} | ||
} | ||
$.getJSON("./api.php?action=bouquet&sub=" + rType + "&bouquet_id=" + rID, function(data) { | ||
if (data.result === true) { | ||
if (rType == "delete") { | ||
$("#bouquet-" + rID).remove(); | ||
$.toast("Bouquet successfully deleted."); | ||
} | ||
$.each($('.tooltip'), function (index, element) { | ||
$(this).remove(); | ||
}); | ||
$('[data-toggle="tooltip"]').tooltip(); | ||
} else { | ||
$.toast("An error occured while processing your request."); | ||
} | ||
}); | ||
} | ||
|
||
$(document).ready(function() { | ||
$("#datatable").DataTable({ | ||
language: { | ||
paginate: { | ||
previous: "<i class='mdi mdi-chevron-left'>", | ||
next: "<i class='mdi mdi-chevron-right'>" | ||
} | ||
}, | ||
drawCallback: function() { | ||
$(".dataTables_paginate > .pagination").addClass("pagination-rounded"); | ||
}, | ||
responsive: false | ||
}); | ||
}); | ||
</script> | ||
|
||
<!-- App js--> | ||
<script src="assets/js/app.min.js"></script> | ||
</body> | ||
</html> |
Oops, something went wrong.