Mini Shell
<?php
/* Database connection */
include("config.php");
$conn = dbconnect();
session_start();
// login or not
if ($_SESSION['name'] == '' || $_SESSION['admin_id'] == '') {
header('location:logout.php');
die();
}
$name = $_SESSION['name'];
$admin_id = $_SESSION['admin_id'];
$query = "SELECT * FROM tb1_admin WHERE name='" . $name . "' AND admin_id='" . $admin_id . "'";
$res_query = mysqli_query($conn, $query);
$fetch = mysqli_fetch_object($res_query);
$username = $fetch->user_name;
$phone = $fetch->phone;
$adminposition = $fetch->position;
if ($adminposition == 1) {
$type = 'Main Admin';
} elseif ($adminposition == 2) {
$type = 'Accounts';
} elseif ($adminposition == 3) {
$type = 'Marketing';
} else {
$type = 'Others';
}
?>
<!DOCTYPE html>
<html lang="en">
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
<title>Admin - Sri Aravindar Arts & Science College </title>
<!-- Meta -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimal-ui">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!-- Favicon icon -->
<link rel="icon" href="assets/images/favicon.png" type="image/x-icon">
<!-- Google font-->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,600,800" rel="stylesheet">
<!-- Required Fremwork -->
<link rel="stylesheet" type="text/css" href="plugin/bootstrap/dist/css/bootstrap.min.css">
<!-- themify-icons line icon -->
<link rel="stylesheet" type="text/css" href="assets/icon/themify-icons/themify-icons.css">
<!-- ico font -->
<link rel="stylesheet" type="text/css" href="assets/icon/icofont/css/icofont.css">
<!-- feather Awesome -->
<link rel="stylesheet" type="text/css" href="assets/icon/feather/css/feather.css">
<!-- Style.css -->
<!-- Style.css -->
<link rel="stylesheet" type="text/css" href="assets/icon/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<link rel="stylesheet" type="text/css" href="assets/css/jquery.mCustomScrollbar.css">
<link rel="stylesheet" type="text/css" href="assets/css/jquery.mCustomScrollbar.css">
<link rel="stylesheet" href="assets/vendors/datatables.net-bs4/dataTables.bootstrap4.css">
<link rel="stylesheet" href="assets/vendors/datatables.net-fixedcolumns-bs4/fixedColumns.bootstrap4.min.css">
<style type="text/css">
@media (min-width:768px) {
td {
white-space: normal !important;
word-wrap: break-word;
}
table {
table-layout: fixed;
}
}
</style>
</head>
<!-- Menu sidebar static layout -->
<body>
<!-- Pre-loader start -->
<div class="theme-loader">
<div class="ball-scale">
<div class='contain'>
<div class="ring">
<div class="frame"></div>
</div>
<div class="ring">
<div class="frame"></div>
</div>
<div class="ring">
<div class="frame"></div>
</div>
<div class="ring">
<div class="frame"></div>
</div>
<div class="ring">
<div class="frame"></div>
</div>
<div class="ring">
<div class="frame"></div>
</div>
<div class="ring">
<div class="frame"></div>
</div>
<div class="ring">
<div class="frame"></div>
</div>
<div class="ring">
<div class="frame"></div>
</div>
<div class="ring">
<div class="frame"></div>
</div>
</div>
</div>
</div>
<!-- Pre-loader end -->
<div id="pcoded" class="pcoded">
<div class="pcoded-overlay-box"></div>
<div class="pcoded-container navbar-wrapper">
<?php include('static-header.php') ?>
<div class="pcoded-main-container">
<div class="pcoded-wrapper">
<?php include('static-sidebar.php') ?>
<div class="pcoded-content">
<div class="pcoded-inner-content">
<!-- Main-body start -->
<div class="main-body">
<div class="page-wrapper">
<!-- Page-header start -->
<div class="page-header">
<div class="row align-items-end">
<div class="col-lg-8">
<div class="page-header-title">
<div class="d-inline">
<h4>Brand Image</h4>
<span>You can add the website Brand Image here!</span>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="page-header-breadcrumb">
<ul class="breadcrumb-title">
<li class="breadcrumb-item" style="float: left;">
<a href="dashboard"> <i class="feather icon-home"></i> </a>
</li>
<li class="breadcrumb-item" style="float: left;"><a href="#!">Home Page</a>
</li>
<li class="breadcrumb-item" style="float: left;"><a href="#!">Brand Image</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- Page-header end -->
<!-- Inline Editor start -->
<div class="card">
<div class="card-header">
<h5>Add New Brand Image</h5>
<span>Click on text to change it</span>
</div>
<div class="card-block">
<div id="header">
<div id="headerLeft">
<div class="mb-3">
<label for="formFile" class="form-label">Upload image</label>
<input class="form-control" type="file" id="video" accept="image/*">
</div>
<button class="btn btn-primary pl-3 pr-3 mt-3" type="button" id="flash-btn">Submit</button>
</div>
</div>
</div>
</div>
<!-- Inline Editor end -->
<!-- Page body start -->
<div class="page-body">
<!-- Zero config.table start -->
<div class="card">
<div class="card-block">
<div class="table-responsive">
<table id="fixed-column" class="table table-striped table-bordered" cellspacing="0" width="100%">
<thead>
<tr>
<th>SI No</th>
<th>Image</th>
<th>Action</th>
<th>Updated By</th>
<th>Last Update</th>
<th>Created Log</th>
</tr>
</thead>
<tbody>
<?php
$content_query = "SELECT * FROM brandimage WHERE status ='1' ORDER BY updated_log DESC";
//echo $content_query;
$content_res = mysqli_query($conn, $content_query);
$counter = 0;
while ($content_row = mysqli_fetch_object($content_res)) {
$counter++;
$news_id = $content_row->id;
$video = $content_row->image;
$status = $content_row->status;
$crm_id = $content_row->crm_id;
$updated_at = $content_row->updated_log;
$updated_log = date('d-m-Y h:i:s A', strtotime($updated_at));
$created_at = $content_row->created_log;
$created_log = date('d-m-Y h:i:s A', strtotime($created_at));
// $crm_query = "SELECT * FROM tb1_admin WHERE admin_id ='$crm_id' ";
// $crm_res = mysqli_query($conn, $crm_query);
// $crm_row = mysqli_fetch_object($crm_res);
// $crm_name = strtolower($crm_row->name);
?>
<tr>
<td><?php
if ($status == 1) {
?>
<i class="fa fa-circle" aria-hidden="true" style="color:#008000" title="News Active"></i>
<?php
} else {
?>
<i class="fa fa-circle" aria-hidden="true" style="color:#FF0000" title="News Deactive"></i>
<?php
}
echo $counter;
?>
</td>
<td> <a class="btn-primary btn" href="./dynamic_image/brandimage/<?php echo $video; ?>">View</a>
</td>
<td>
<button class="btn btn-danger mt-2 btn-sm delete" type="button" id="delete" data-id="<?php echo $news_id; ?>"><i class="fa fa-trash"></i></button>
</td>
<td><?php echo ucfirst($crm_name); ?></td>
<td><?php echo $updated_log; ?></td>
<td><?php echo $created_log; ?></td>
</tr>
<?php
}
?>
</tbody>
</table>
</div>
</div>
</div>
<!-- Zero config.table end -->
<div class="md-overlay"></div>
</div>
<!-- Page body end -->
</div>
<!-- Page body end -->
</div>
</div>
<!-- Main-body end -->
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Required Jquery -->
<script type="text/javascript" src="plugin/jquery/dist/jquery.min.js"></script>
<script type="text/javascript" src="plugin/jquery-ui/jquery-ui.min.js"></script>
<script type="text/javascript" src="plugin/popper.js/dist/umd/popper.min.js"></script>
<script type="text/javascript" src="plugin/bootstrap/dist/js/bootstrap.min.js"></script>
<!-- jquery slimscroll js -->
<script type="text/javascript" src="plugin/jquery-slimscroll/jquery.slimscroll.js"></script>
<!-- modernizr js -->
<script type="text/javascript" src="plugin/modernizr/modernizr.js"></script>
<script type="text/javascript" src="plugin/modernizr/feature-detects/css-scrollbars.js"></script>
<!-- ck editor -->
<script src="assets/pages/ckeditor/ckeditor.js"></script>
<!-- Custom js -->
<script type="text/javascript" src="assets/pages/ckeditor/ckeditor-custom.js"></script>
<!-- Plugin js for this page -->
<script src="assets/vendors/datatables.net/jquery.dataTables.js"></script>
<script src="assets/vendors/datatables.net-bs4/dataTables.bootstrap4.js"></script>
<script src="assets/vendors/datatables.net-fixedcolumns/dataTables.fixedColumns.min.js"></script>
<!-- BEGIN PAGE LEVEL CUSTOM SCRIPTS -->
<script src="assets/vendors/table/datatable/datatables.js"></script>
<!-- NOTE TO Use Copy CSV Excel PDF Print Options You Must Include These Files -->
<script src="assets/vendors/table/datatable/button-ext/dataTables.buttons.min.js"></script>
<script src="assets/vendors/table/datatable/button-ext/jszip.min.js"></script>
<script src="assets/vendors/table/datatable/button-ext/buttons.html5.min.js"></script>
<script src="assets/vendors/table/datatable/button-ext/buttons.print.min.js"></script>
<!-- End plugin js for this page -->
<script src="assets/js/pcoded.min.js"></script>
<script src="assets/js/vartical-layout.min.js"></script>
<script src="assets/js/jquery.mCustomScrollbar.concat.min.js"></script>
<script src="assets/js/sweetalert.min.js"></script>
<script type="text/javascript" src="assets/js/script.js"></script>
<script src="assets/js/data-table.js"></script>
<script type="text/javascript">
$(".active").on('click', function() {
var type = "active";
var news_id = $(this).attr('data-id');
swal({
title: 'Are you sure?',
text: "You want to active this Video?",
icon: 'warning',
showCancelButton: true,
confirmButtonColor: '#3f51b5',
cancelButtonColor: '#ff4081',
confirmButtonText: 'Great ',
closeOnEsc: false,
closeOnClickOutside: false,
buttons: {
cancel: {
text: "No",
value: null,
visible: true,
className: "btn btn-danger",
closeModal: true,
},
confirm: {
text: "Yes",
value: true,
visible: true,
className: "btn btn-primary",
closeModal: true
}
}
}).then((value) => {
if (value == true) {
$.ajax({
url: "ajax/importantnews_action.php",
type: "POST",
data: {
"news_id": news_id,
"type": type
},
dataType: "json",
success: function(data) {
if (data == 'done') {
swal({
title: "Successfully Activated!",
text: "The Video has been successfully activated.",
type: "success",
icon: 'success',
confirmButtonColor: '#3f51b5',
confirmButtonText: 'OK ',
closeOnEsc: false,
closeOnClickOutside: false,
buttons: {
confirm: {
text: "Okay",
value: true,
visible: true,
className: "btn btn-primary",
closeModal: true
}
}
}).then((value) => {
if (value == true) {
location.reload();
}
})
} else {
swal("Internal Server Error!", "Please try again", "error");
}
},
error: function(xhr, ajaxOptions, thrownError) {
swal("Internal Server Error!", "Please try again", "error");
}
});
} else {
// swal(`The returned value is: ${value}`);
}
});
});
</script>
<script type="text/javascript">
$(".delete").on('click', function() {
var type = "delete";
var news_id = $(this).attr('data-id');
swal({
title: 'Are you sure?',
text: "You want to delete this Brand Image?",
icon: 'warning',
showCancelButton: true,
confirmButtonColor: '#3f51b5',
cancelButtonColor: '#ff4081',
confirmButtonText: 'Great ',
closeOnEsc: false,
closeOnClickOutside: false,
buttons: {
cancel: {
text: "No",
value: null,
visible: true,
className: "btn btn-danger",
closeModal: true,
},
confirm: {
text: "Yes",
value: true,
visible: true,
className: "btn btn-primary",
closeModal: true
}
}
}).then((value) => {
if (value == true) {
$.ajax({
url: "ajax/deletebrand.php",
type: "POST",
data: {
"news_id": news_id,
"type": type
},
dataType: "json",
success: function(data) {
if (data.status == '200') {
swal({
title: "Successfully Deleted!",
text: "The Brand Image has been successfully Deleted.",
type: "success",
icon: 'success',
confirmButtonColor: '#3f51b5',
confirmButtonText: 'OK ',
closeOnEsc: false,
closeOnClickOutside: false,
buttons: {
confirm: {
text: "Okay",
value: true,
visible: true,
className: "btn btn-primary",
closeModal: true
}
}
}).then((value) => {
if (value == true) {
location.reload();
}
})
} else {
swal("Internal Server Error!", "Please try again", "error");
}
},
error: function(xhr, ajaxOptions, thrownError) {
swal("Internal Server Error!", "Please try again", "error");
}
});
} else {
// swal(`The returned value is: ${value}`);
}
});
});
</script>
<script type="text/javascript">
$(".inactive").on('click', function() {
var type = "inactive";
var news_id = $(this).attr('data-id');
swal({
title: 'Are you sure?',
text: "You want to inactive this Brand Image?",
icon: 'warning',
showCancelButton: true,
confirmButtonColor: '#3f51b5',
cancelButtonColor: '#ff4081',
confirmButtonText: 'Great ',
closeOnEsc: false,
closeOnClickOutside: false,
buttons: {
cancel: {
text: "No",
value: null,
visible: true,
className: "btn btn-danger",
closeModal: true,
},
confirm: {
text: "Yes",
value: true,
visible: true,
className: "btn btn-primary",
closeModal: true
}
}
}).then((value) => {
if (value == true) {
$.ajax({
url: "ajax/importantnews_action.php",
type: "POST",
data: {
"news_id": news_id,
"type": type
},
dataType: "json",
success: function(data) {
if (data == 'done') {
swal({
title: "Successfully Inactive!",
text: "The Brand Image has been successfully deactivated.",
type: "success",
icon: 'success',
confirmButtonColor: '#3f51b5',
confirmButtonText: 'OK ',
closeOnEsc: false,
closeOnClickOutside: false,
buttons: {
confirm: {
text: "Okay",
value: true,
visible: true,
className: "btn btn-primary",
closeModal: true
}
}
}).then((value) => {
if (value == true) {
location.reload();
}
})
} else {
swal("Internal Server Error!", "Please try again", "error");
}
},
error: function(xhr, ajaxOptions, thrownError) {
swal("Internal Server Error!", "Please try again", "error");
}
});
} else {
// swal(`The returned value is: ${value}`);
}
});
});
</script>
<script type="text/javascript">
$(document).ready(function() {
$('#flash-btn').click(function() {
$('.is-invalid').removeClass('is-invalid');
var fileInput = $('#video')[0].files[0];
if (fileInput) {
var formData = new FormData();
formData.append('video', fileInput);
$.ajax({
url: './ajax/addbrandimage.php', // Replace with your endpoint URL
type: 'POST',
data: formData,
processData: false,
contentType: false,
success: function(response) {
if (response.status == '200') {
swal({
title: 'Added Successfully!',
text: "Brand Image has been successfully Added",
icon: 'success',
confirmButtonColor: '#3f51b5',
closeOnEsc: false,
closeOnClickOutside: false,
buttons: {
confirm: {
text: "Okay",
value: true,
visible: true,
className: "btn btn-primary",
closeModal: true
}
}
}).then((value) => {
if (value == true) {
location.reload();
}
});
} else {
swal({
title: 'Internal Sever Error!',
text: "Try again",
icon: 'warning',
closeOnEsc: false,
closeOnClickOutside: false,
})
}
},
error: function(xhr, status, error) {
swal({
title: 'Internal Sever Error!',
text: "Try again",
icon: 'warning',
closeOnEsc: false,
closeOnClickOutside: false,
})
}
});
} else {
$('#video').addClass('is-invalid');
}
});
});
</script>
</body>
</html>
Zerion Mini Shell 1.0