|
Server IP : 82.112.239.40 / Your IP : 216.73.216.81 Web Server : LiteSpeed System : Linux in-mum-web1676.main-hosting.eu 5.14.0-503.38.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Apr 18 08:52:10 EDT 2025 x86_64 User : u641149403 ( 641149403) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF Directory (0755) : /home/u641149403/domains/uniformindia.co.in/public_html/admin/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<?php
// start session
session_start();
// set time for session timeout
$currentTime = time() + 25200;
$expired = 3600;
// if session not set go to login page
if(!isset($_SESSION['user'])){
header("location:index.php");
}
// if current time is more than session timeout back to login page
if($currentTime > $_SESSION['timeout']){
session_destroy();
header("location:index.php");
}
// destroy previous session timeout and create new one
unset($_SESSION['timeout']);
$_SESSION['timeout'] = $currentTime + $expired;
?>
<?php include"header.php";?>
<html>
<head>
<title>Manufacturer | <?=$settings['app_name']?> - Dashboard</title>
</head>
</body>
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<?php
include_once('includes/functions.php');
?>
<section class="content-header">
<h1>Manufacturer /<small><a href="home.php"><i class="fa fa-home"></i> Home</a></small></h1>
<ol class="breadcrumb">
<a class="btn btn-block btn-default" href="add-manufacturer.php"><i class="fa fa-plus-square"></i> Add New Manufacturer</a>
</ol>
</section>
<?php
if($permissions['categories']['read']==1) {
?>
<!-- Main content -->
<section class="content">
<!-- Main row -->
<div class="row">
<section class='content-header' id="show_result"></section>
<!-- Left col -->
<div class="col-xs-12">
<div class="box">
<div class="box-header with-border">
<form method="POST" id="filter_form" name="filter_form">
<div class="form-group col-md-3">
<!--<h3 class="box-title">Filter by status</h4>-->
<!-- <input type="submit" name="filter_btn" id="filter_btn" value="Filter" class="btn btn-primary btn-md"> -->
</div>
</form>
</div>
<div class="box-header">
<h3 class="box-title">Manufacturer</h3>
</div>
<div class="box-body table-responsive">
<table class="table table-hover" data-toggle="table" id="cateory_list"
data-url="api-firebase/get-bootstrap-table-data.php?table=manufacturer"
data-page-list="[5, 10, 20, 50, 100, 200]"
data-show-refresh="true" data-show-columns="true"
data-side-pagination="server" data-pagination="true"
data-search="true" data-trim-on-search="false"
data-sort-name="id" data-sort-order="desc"
data-query-params="queryParams_1">
<thead>
<tr>
<th data-field="id" data-sortable="true">ID</th>
<th data-field="name" data-sortable="true">Name</th>
<th data-field="operate">Action</th>
</tr>
</thead>
</table>
</div>
</div>
</div>
<div class="separator"> </div>
</div>
</section>
<?php } else { ?>
<div class="alert alert-danger topmargin-sm" style="margin-top: 20px;">You have no permission to view categories.</div>
<?php } ?>
</div><!-- /.content-wrapper -->
<script>
function del(e) {
var verify = confirm("Do you really want to delete!!!");
if(verify) {
$.ajax({
url: "delete-manufacturer.php",
type: "POST",
data: {
delete_id: e,
},
success: function(response){
location.reload();
$('#show_result').val(response);
},
})
}
}
</script>
</body>
</html>
<?php include"footer.php";?>