2024-02-12 10:35:09 +08:00
|
|
|
|
<?php
|
|
|
|
|
include "functions.php";
|
2024-02-15 20:42:37 +08:00
|
|
|
|
|
2024-02-12 10:35:09 +08:00
|
|
|
|
$_SESSION["url"] = $_SERVER['REQUEST_URI'];
|
|
|
|
|
if ($_SESSION["userId"] <> "") {
|
|
|
|
|
$_SESSION["isLoggedIn"] = true;
|
|
|
|
|
$vendorLoginId = searchVendorbyLoginId($_SESSION["userId"]);
|
|
|
|
|
$vendorLoginIdjson = json_decode($vendorLoginId, true);
|
|
|
|
|
if (isset($vendorLoginIdjson['results'][0])) {
|
|
|
|
|
$vendorData = $vendorLoginIdjson['results'][0];
|
|
|
|
|
$vendorId = $vendorData['_id'];
|
|
|
|
|
$_SESSION["LoggedInVendorId"] = $vendorId;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
$_SESSION["isLoggedIn"] = false;
|
|
|
|
|
header("location: login.php");
|
|
|
|
|
}
|
|
|
|
|
$products = productList();
|
|
|
|
|
$shopOrders = getOrderbyVendorId($vendorId);
|
|
|
|
|
|
|
|
|
|
$vendorOrderss = json_decode($shopOrders);
|
|
|
|
|
|
|
|
|
|
if (is_array($vendorOrderss)) {
|
|
|
|
|
$vendorOrders = json_decode($shopOrders);
|
|
|
|
|
} elseif (is_object($vendorOrderss) && property_exists($vendorOrderss, 'message')) {
|
|
|
|
|
$vendorOrders = [];
|
|
|
|
|
} else {
|
|
|
|
|
echo "Unknown type or no 'message' property found.";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
?>
|
|
|
|
|
<!--=========================================================
|
|
|
|
|
Item Name: oBanana B2B - Elevate Your Business
|
|
|
|
|
Author: ashishmaraviya
|
|
|
|
|
Version: 3.6
|
|
|
|
|
Copyright 2023
|
|
|
|
|
Author URI: https://themeforest.net/user/ashishmaraviya
|
|
|
|
|
============================================================-->
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<meta http-equiv="x-ua-compatible" content="ie=edge" />
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
|
|
|
|
|
|
|
|
|
|
<title>oBanana B2B - Elevate Your Business</title>
|
|
|
|
|
<meta name="keywords" content="apparel, catalog, clean, ecommerce, ecommerce HTML, electronics, fashion, html eCommerce, html store, minimal, multipurpose, multipurpose ecommerce, online store, responsive ecommerce template, shops" />
|
|
|
|
|
<meta name="description" content="Best ecommerce html template for single and multi vendor store.">
|
|
|
|
|
<meta name="author" content="ashishmaraviya">
|
|
|
|
|
<link href="https://cdn.materialdesignicons.com/4.4.95/css/materialdesignicons.min.css" rel="stylesheet" />
|
|
|
|
|
|
|
|
|
|
<!-- site Favicon -->
|
|
|
|
|
<link rel="icon" href="assets/images/favicon/favicon.png" sizes="32x32" />
|
|
|
|
|
<link rel="apple-touch-icon" href="assets/images/favicon/favicon.png" />
|
|
|
|
|
<meta name="msapplication-TileImage" content="assets/images/favicon/favicon.png" />
|
|
|
|
|
|
|
|
|
|
<!-- css Icon Font -->
|
|
|
|
|
<link rel="stylesheet" href="assets/css/vendor/ecicons.min.css" />
|
|
|
|
|
|
|
|
|
|
<!-- css All Plugins Files -->
|
|
|
|
|
<link rel="stylesheet" href="assets/css/plugins/animate.css" />
|
|
|
|
|
<link rel="stylesheet" href="assets/css/plugins/swiper-bundle.min.css" />
|
|
|
|
|
<link rel="stylesheet" href="assets/css/plugins/jquery-ui.min.css" />
|
|
|
|
|
<link rel="stylesheet" href="assets/css/plugins/countdownTimer.css" />
|
|
|
|
|
<link rel="stylesheet" href="assets/css/plugins/slick.min.css" />
|
|
|
|
|
<link rel="stylesheet" href="assets/css/plugins/bootstrap.css" />
|
|
|
|
|
|
|
|
|
|
<!-- Main Style -->
|
|
|
|
|
<link rel="stylesheet" href="assets/css/style.css" />
|
|
|
|
|
<link rel="stylesheet" href="assets/css/responsive.css" />
|
|
|
|
|
|
|
|
|
|
<!-- Background css -->
|
|
|
|
|
<link rel="stylesheet" id="bg-switcher-css" href="assets/css/backgrounds/bg-4.css">
|
2024-03-13 10:59:15 +08:00
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
#pagination {
|
|
|
|
|
display: flex;
|
|
|
|
|
list-style: none;
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#pagination a {
|
|
|
|
|
color: #333;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
padding: 5px 10px;
|
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
2024-02-12 10:35:09 +08:00
|
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
<body class="shop_page">
|
|
|
|
|
<div id="ec-overlay">
|
|
|
|
|
<div class="ec-ellipsis">
|
|
|
|
|
<div></div>
|
|
|
|
|
<div></div>
|
|
|
|
|
<div></div>
|
|
|
|
|
<div></div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<?php include 'header.php'; ?>
|
|
|
|
|
<!-- ekka Cart Start -->
|
|
|
|
|
|
|
|
|
|
<!-- ekka Cart End -->
|
|
|
|
|
|
2024-02-29 16:00:50 +08:00
|
|
|
|
<!-- Category Sidebar start -->
|
|
|
|
|
<?php include "category-slider.php" ?>
|
|
|
|
|
|
2024-02-12 10:35:09 +08:00
|
|
|
|
<!-- Ec breadcrumb start -->
|
|
|
|
|
<div class="sticky-header-next-sec ec-breadcrumb section-space-mb">
|
|
|
|
|
<div class="container">
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-12">
|
|
|
|
|
<div class="row ec_breadcrumb_inner">
|
|
|
|
|
<div class="col-md-6 col-sm-12">
|
|
|
|
|
<h2 class="ec-breadcrumb-title">Vendor Dashboard</h2>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-md-6 col-sm-12">
|
|
|
|
|
<!-- ec-breadcrumb-list start -->
|
|
|
|
|
<ul class="ec-breadcrumb-list">
|
|
|
|
|
<li class="ec-breadcrumb-item"><a href="index.php">Home</a></li>
|
|
|
|
|
<li class="ec-breadcrumb-item active">Dashboard</li>
|
|
|
|
|
</ul>
|
|
|
|
|
<!-- ec-breadcrumb-list end -->
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- Ec breadcrumb end -->
|
|
|
|
|
|
|
|
|
|
<!-- Vendor dashboard section -->
|
|
|
|
|
<section class="ec-page-content ec-vendor-dashboard section-space-p">
|
|
|
|
|
<div class="container">
|
|
|
|
|
<div class="row">
|
|
|
|
|
<!-- Sidebar Area Start -->
|
|
|
|
|
<div class="ec-shop-leftside ec-vendor-sidebar col-lg-3 col-md-12">
|
|
|
|
|
<div class="ec-sidebar-wrap ec-border-box">
|
|
|
|
|
<!-- Sidebar Category Block -->
|
|
|
|
|
<div class="ec-sidebar-block">
|
|
|
|
|
<div class="ec-vendor-block">
|
2024-03-13 10:59:15 +08:00
|
|
|
|
<!-- 03-12-2024 Stacy added placeholder for vendor banner -->
|
|
|
|
|
<?php
|
|
|
|
|
if (!empty($vendorData['vendor_banner'])) { ?>
|
|
|
|
|
<div class="ec-vendor-block-bg" style="background-image: url(<?php echo $vendorData['vendor_banner'] ?>) !important;"></div>
|
|
|
|
|
<?php } else { ?>
|
|
|
|
|
<div class="ec-vendor-block-bg" style="background-color: orange; background-image: url(<?php echo $vendorData['vendor_banner'] ?>) !important;"></div>
|
|
|
|
|
<?php } ?>
|
|
|
|
|
<!-- <div class="ec-vendor-block-bg" style="background-image: url(<?php #echo $vendorData['vendor_banner'] ?>) !important;"></div> -->
|
2024-02-12 10:35:09 +08:00
|
|
|
|
<div class="ec-vendor-block-detail">
|
2024-03-13 10:59:15 +08:00
|
|
|
|
<!-- <img class="v-img" src=<?php #echo $vendorData['vendor_image'] ?> alt="vendor image"> -->
|
|
|
|
|
<!-- 03-12-2024 Stacy added placeholder for vendor profile -->
|
|
|
|
|
<?php
|
|
|
|
|
if (!empty($vendorData['vendor_image'])) { ?>
|
|
|
|
|
<img class="v-img" src=<?php echo $vendorData['vendor_image'] ?> alt="vendor image">
|
|
|
|
|
<?php } else { ?>
|
|
|
|
|
<img class="v-img" src="https://yourteachingmentor.com/wp-content/uploads/2020/12/istockphoto-1223671392-612x612-1.jpg" alt="vendor image">
|
|
|
|
|
<?php } ?>
|
2024-02-12 10:35:09 +08:00
|
|
|
|
<h5 class="name"><?php echo $vendorData['user_login'] ?></h5>
|
|
|
|
|
</div>
|
2024-02-14 17:47:28 +08:00
|
|
|
|
<!-- <div class="ec-vendor-block-items">
|
|
|
|
|
|
2024-02-14 10:32:33 +08:00
|
|
|
|
<ul>
|
|
|
|
|
<li><a href="vendor-dashboard.php">Dashboard</a></li>
|
|
|
|
|
<li><a onclick="addProduct();" href="">Upload Product</a></li>
|
|
|
|
|
<li><a href="vendor-settings.php">Settings (Edit)</a></li>
|
|
|
|
|
</ul>
|
2024-02-14 17:47:28 +08:00
|
|
|
|
</div> -->
|
|
|
|
|
<?php include "vendor-user-tabs.php" ?>
|
2024-02-12 10:35:09 +08:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="ec-shop-rightside col-lg-9 col-md-12">
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-lg-3 col-md-6">
|
|
|
|
|
<div class="ec-vendor-dashboard-sort-card color-blue">
|
|
|
|
|
<h5>Products</h5>
|
|
|
|
|
<?php
|
|
|
|
|
$vendor_Id = $vendorId;
|
|
|
|
|
$product = array_filter($products, function ($var) use ($vendor_Id) {
|
|
|
|
|
return ($var['vendor_api_id'] == $vendor_Id);
|
|
|
|
|
});
|
|
|
|
|
?>
|
|
|
|
|
<h3><?php echo count($product); ?></h3>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-lg-3 col-md-6">
|
|
|
|
|
<div class="ec-vendor-dashboard-sort-card color-pink">
|
|
|
|
|
<h5>Orders</h5>
|
|
|
|
|
<h3> <?php echo count($vendorOrders); ?></h3>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2024-02-26 18:11:53 +08:00
|
|
|
|
<!-- 02-26-2024 Stacy commented out -->
|
|
|
|
|
<!-- <div class="col-lg-3 col-md-6">
|
2024-02-12 10:35:09 +08:00
|
|
|
|
<div class="ec-vendor-dashboard-sort-card color-green">
|
|
|
|
|
<h5>Earnings</h5>
|
|
|
|
|
<h3>$56<span>/ Day</span></h3>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-lg-3 col-md-6">
|
|
|
|
|
<div class="ec-vendor-dashboard-sort-card color-orange">
|
|
|
|
|
<h5>Sales</h5>
|
|
|
|
|
<h3>550<span>/ Mo</span></h3>
|
|
|
|
|
</div>
|
2024-02-26 18:11:53 +08:00
|
|
|
|
</div> -->
|
2024-02-12 10:35:09 +08:00
|
|
|
|
</div>
|
|
|
|
|
<div class="ec-vendor-dashboard-card space-bottom-30">
|
|
|
|
|
<div class="ec-vendor-card-header">
|
|
|
|
|
<h5>Latest Order</h5>
|
|
|
|
|
<div class="ec-header-btn">
|
|
|
|
|
<!-- <a class="btn btn-lg btn-primary" href="#">View All</a> -->
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="ec-vendor-card-body">
|
|
|
|
|
<div class="ec-vendor-card-table">
|
|
|
|
|
<table class="table ec-table">
|
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<th scope="col">Image</th>
|
|
|
|
|
<th scope="col">Name</th>
|
|
|
|
|
<th scope="col">Status</th>
|
|
|
|
|
<th scope="col">Customer Shipping Address</th>
|
|
|
|
|
<th scope="col">Total</th>
|
|
|
|
|
<th scope="col">Action</th>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody id="orderItemsBody">
|
|
|
|
|
<?php
|
|
|
|
|
$totalOrders = count($vendorOrders);
|
|
|
|
|
$displayLimit = 5;
|
|
|
|
|
|
|
|
|
|
for ($i = 0; $i < $totalOrders; $i++) {
|
|
|
|
|
$order = $vendorOrders[$i];
|
|
|
|
|
$orderArray = json_encode($order, true);
|
|
|
|
|
$orderItems = json_decode($orderArray, true);
|
|
|
|
|
|
|
|
|
|
foreach ($orderItems['items'] as $item) {
|
|
|
|
|
?>
|
|
|
|
|
<tr>
|
2024-02-22 09:45:28 +08:00
|
|
|
|
<td>
|
|
|
|
|
<!-- raymart added function feb 21 2024 -->
|
|
|
|
|
<?php
|
2024-03-13 10:59:15 +08:00
|
|
|
|
# 03-11-2024 Stacy modified
|
|
|
|
|
if (isset($orderItems['items'][0]['product']['product_image'])) {
|
2024-02-22 09:45:28 +08:00
|
|
|
|
?>
|
2024-03-13 10:59:15 +08:00
|
|
|
|
<img class="prod-img" src="<?php echo $orderItems['items'][0]['product']['product_image']; ?>" alt="edit" />
|
|
|
|
|
<?php
|
2024-02-22 09:45:28 +08:00
|
|
|
|
} else {
|
2024-03-13 10:59:15 +08:00
|
|
|
|
?>
|
2024-02-22 09:45:28 +08:00
|
|
|
|
<img class="prod-img rounded-circle" src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/65/No-Image-Placeholder.svg/495px-No-Image-Placeholder.svg.png?20200912122019" alt="edit" />
|
|
|
|
|
<?php
|
|
|
|
|
}
|
|
|
|
|
?>
|
|
|
|
|
|
|
|
|
|
<!-- <?php
|
2024-02-12 10:35:09 +08:00
|
|
|
|
if (isset($item['product']['product_image']) && !empty($item['product']['product_image'])) {
|
|
|
|
|
echo '<img src="' . $item['product']['product_image'] . '" alt="Product Image" class="prod-img">';
|
|
|
|
|
} else {
|
|
|
|
|
echo '<img src="assets/img/vendor/u1.jpg" class="prod-img rounded-circle" alt="Placeholder Image">';
|
|
|
|
|
}
|
2024-02-22 09:45:28 +08:00
|
|
|
|
?> -->
|
|
|
|
|
</td>
|
2024-02-12 10:35:09 +08:00
|
|
|
|
<td><span><?php echo $item['product']['name']; ?></span></td>
|
|
|
|
|
<td><span><?php echo $orderItems['status']; ?></span></td>
|
|
|
|
|
<td><span><?php echo $orderItems['shipping_address']['shipping_first_name']; ?></span></td>
|
|
|
|
|
<td><span><?php echo $item['price']; ?></span></td>
|
2024-03-13 10:59:15 +08:00
|
|
|
|
<td style="display:flex; justify-content:center; margin-top:-4px;">
|
2024-02-12 10:35:09 +08:00
|
|
|
|
<span onclick="editVendorOrder('<?php echo $orderItems['_id'] ?>');">
|
2024-03-13 10:59:15 +08:00
|
|
|
|
<a class="mdi mdi-circle-edit-outline" style="font-size: 20px;"></a>
|
2024-02-12 10:35:09 +08:00
|
|
|
|
</span>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<?php
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
?>
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
<div id="pagination"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<script>
|
|
|
|
|
var sessionToken = '<?php echo isset($_SESSION["token"]) ? $_SESSION["token"] : ""; ?>';
|
|
|
|
|
var email = '<?php echo isset($_SESSION["email"]) ? $_SESSION["email"] : ""; ?>';
|
|
|
|
|
var password = '<?php echo isset($_SESSION["password"]) ? $_SESSION["password"] : ""; ?>';
|
|
|
|
|
|
|
|
|
|
function login(username, password, callback) {
|
2024-02-15 20:42:37 +08:00
|
|
|
|
fetch("https://<?php echo $_SESSION["data_endpoint"]; ?>/api/v1/login", {
|
2024-02-12 10:35:09 +08:00
|
|
|
|
method: "POST",
|
|
|
|
|
headers: {
|
|
|
|
|
"Content-Type": "application/json",
|
|
|
|
|
"X-Api-Key": "{{apiKey}}"
|
|
|
|
|
},
|
|
|
|
|
body: JSON.stringify({
|
|
|
|
|
username: username,
|
|
|
|
|
password: password
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
.then(response => {
|
|
|
|
|
if (response.ok) {
|
|
|
|
|
return response.json();
|
|
|
|
|
} else {
|
|
|
|
|
throw new Error("Unable to login");
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.then(data => {
|
|
|
|
|
// Update the session token on the server side
|
|
|
|
|
fetch("update-token-session.php", {
|
|
|
|
|
method: "POST",
|
|
|
|
|
headers: {
|
|
|
|
|
"Content-Type": "application/json"
|
|
|
|
|
},
|
|
|
|
|
body: JSON.stringify({
|
|
|
|
|
token: data.token
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
.then(response => response.json())
|
|
|
|
|
.then(result => {
|
|
|
|
|
if (result.status === 'success') {
|
|
|
|
|
// Update the session token in the client-side variable
|
|
|
|
|
sessionToken = data.token;
|
|
|
|
|
console.log("New Token:", sessionToken);
|
|
|
|
|
callback();
|
|
|
|
|
} else {
|
|
|
|
|
throw new Error("Unable to update session token");
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
.catch(error => {
|
|
|
|
|
console.error("Error:", error.message);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function editVendorOrder(vendorOrderId) {
|
|
|
|
|
|
|
|
|
|
console.log("Session Token:", sessionToken);
|
|
|
|
|
login(email, password, function() {
|
|
|
|
|
window.open("vendor-dashboard-orders-edit.php?id=" + vendorOrderId, "_self");
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function addProduct() {
|
|
|
|
|
console.log("Session Token:", sessionToken);
|
|
|
|
|
login(email, password, function() {
|
|
|
|
|
// Removed the call to updateSessionToken
|
|
|
|
|
window.open("vendor-uploads-add-product-action.php", "_self");
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
<script>
|
|
|
|
|
const itemsPerPage = 5;
|
|
|
|
|
const totalItems = <?php echo $totalOrders; ?>;
|
|
|
|
|
const totalPages = Math.ceil(totalItems / itemsPerPage);
|
|
|
|
|
|
2024-03-13 10:59:15 +08:00
|
|
|
|
//03-11-2024 Stacy modified for the pagination UI
|
2024-02-12 10:35:09 +08:00
|
|
|
|
function showPage(page) {
|
|
|
|
|
const startIndex = (page - 1) * itemsPerPage;
|
|
|
|
|
const endIndex = startIndex + itemsPerPage;
|
|
|
|
|
const tableRows = document.querySelectorAll('#orderItemsBody tr');
|
2024-03-13 10:59:15 +08:00
|
|
|
|
|
|
|
|
|
// for pagination button
|
|
|
|
|
const pager = document.querySelectorAll('.page-btn')
|
|
|
|
|
pager.forEach((row, index) => {
|
|
|
|
|
if (index!==page-1) {
|
|
|
|
|
row.style.backgroundColor="white";
|
|
|
|
|
row.style.color="black";
|
|
|
|
|
} else {
|
|
|
|
|
row.style.backgroundColor="#007bff";
|
|
|
|
|
row.style.color="white";
|
|
|
|
|
}
|
|
|
|
|
});
|
2024-02-12 10:35:09 +08:00
|
|
|
|
|
2024-03-13 10:59:15 +08:00
|
|
|
|
// document.querySelector('.page-' + page).style.backgroundColor="red";
|
2024-02-12 10:35:09 +08:00
|
|
|
|
tableRows.forEach((row, index) => {
|
|
|
|
|
if (index >= startIndex && index < endIndex) {
|
|
|
|
|
row.style.display = 'table-row';
|
|
|
|
|
} else {
|
|
|
|
|
row.style.display = 'none';
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function createPagination() {
|
|
|
|
|
const paginationContainer = document.getElementById('pagination');
|
|
|
|
|
|
|
|
|
|
for (let i = 1; i <= totalPages; i++) {
|
2024-03-13 10:59:15 +08:00
|
|
|
|
// created a tag
|
|
|
|
|
const pageButton = document.createElement('a');
|
|
|
|
|
// created class for a tag
|
|
|
|
|
pageButton.className = "page-btn page-" + i
|
2024-02-12 10:35:09 +08:00
|
|
|
|
pageButton.textContent = i;
|
|
|
|
|
pageButton.addEventListener('click', () => showPage(i));
|
|
|
|
|
paginationContainer.appendChild(pageButton);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
createPagination();
|
|
|
|
|
showPage(1); // Show the first page by default
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
<div class="ec-vendor-dashboard-card space-bottom-30">
|
|
|
|
|
<div class="ec-vendor-card-header">
|
|
|
|
|
<h5>Product List</h5>
|
|
|
|
|
<div class="ec-header-btn">
|
|
|
|
|
<a class="btn btn-lg btn-primary" href="vendor-all-product-list.php">View All</a>
|
|
|
|
|
<!-- <a class="btn btn-lg btn-primary" href="vendor-uploads-add-product-action.php">Add</a> -->
|
2024-03-13 10:59:15 +08:00
|
|
|
|
<a class="btn btn-lg btn-primary" href="vendor-uploads-add-product-action.php" onclick="addProduct('<?php echo $product['_id'] ?>');">Add</a>
|
2024-02-12 10:35:09 +08:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="ec-vendor-card-body">
|
|
|
|
|
<div class="ec-vendor-card-table">
|
|
|
|
|
<table class="table ec-table">
|
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<th scope="col">Image</th>
|
|
|
|
|
<th scope="col">Name</th>
|
|
|
|
|
<th scope="col">Regular Price</th>
|
|
|
|
|
<th scope="col">Sale Price</th>
|
|
|
|
|
<th scope="col">Minimum Order</th>
|
|
|
|
|
<th scope="col">Stock</th>
|
|
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
|
|
|
|
<?php
|
|
|
|
|
$products = productListVendor($vendorId);
|
|
|
|
|
$totalProducts = count($products);
|
|
|
|
|
$displayLimit = 5;
|
|
|
|
|
for ($i = 0; $i < min($totalProducts, $displayLimit); $i++) {
|
|
|
|
|
$product = $products[$i];
|
|
|
|
|
?>
|
|
|
|
|
<tr>
|
2024-02-22 09:45:28 +08:00
|
|
|
|
<td>
|
|
|
|
|
<!-- raymart added function feb 21 2024 -->
|
|
|
|
|
<?php
|
|
|
|
|
if (isset($product['images'])) {
|
|
|
|
|
$image_urls = explode(',', $product['images']);
|
|
|
|
|
if (!empty($image_urls)) {
|
|
|
|
|
$first_image_url = trim($image_urls[0]);
|
|
|
|
|
?>
|
2024-03-13 10:59:15 +08:00
|
|
|
|
<img class="prod-img" src="<?php echo $first_image_url; ?>" alt="edit" />
|
2024-02-22 09:45:28 +08:00
|
|
|
|
<?php
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
?>
|
|
|
|
|
<img class="prod-img rounded-circle" src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/65/No-Image-Placeholder.svg/495px-No-Image-Placeholder.svg.png?20200912122019" alt="edit" />
|
|
|
|
|
<?php
|
|
|
|
|
}
|
2024-03-13 10:59:15 +08:00
|
|
|
|
?>
|
|
|
|
|
|
2024-02-22 09:45:28 +08:00
|
|
|
|
<!-- <?php
|
2024-02-12 10:35:09 +08:00
|
|
|
|
if (isset($product['product_image']) && !empty($product['product_image'])) {
|
|
|
|
|
echo '<img src="' . $product['product_image'] . '" alt="Product Image" class="prod-img" >';
|
|
|
|
|
} else {
|
|
|
|
|
echo '<img src="assets/img/vendor/u1.jpg" class="prod-img rounded-circle" alt="Placeholder Image" >';
|
|
|
|
|
}
|
2024-02-22 09:45:28 +08:00
|
|
|
|
?> -->
|
|
|
|
|
</td>
|
2024-02-12 10:35:09 +08:00
|
|
|
|
<td><span><?php echo $product['product_name']; ?></span></td>
|
|
|
|
|
<td><span><?php echo $product['regular_price']; ?></span></td>
|
|
|
|
|
<td><span><?php echo $product['sale_price']; ?></span></td>
|
|
|
|
|
<td><span><?php echo $product['minimum_order']; ?></span></td>
|
|
|
|
|
<td><span><?php echo $product['stock']; ?></span></td>
|
|
|
|
|
</tr>
|
|
|
|
|
<?php
|
|
|
|
|
}
|
|
|
|
|
?>
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
2024-03-13 10:59:15 +08:00
|
|
|
|
<div id="pagination"></div>
|
2024-02-12 10:35:09 +08:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2024-02-26 18:11:53 +08:00
|
|
|
|
<!-- 02-26-2024 Stacy commented out -->
|
|
|
|
|
<!-- <div class="ec-vendor-dashboard-card">
|
2024-02-12 10:35:09 +08:00
|
|
|
|
<div class="ec-vendor-card-header">
|
|
|
|
|
<h5>Growth statastics</h5>
|
|
|
|
|
<div class="ec-header-btn">
|
|
|
|
|
<a class="btn btn-lg btn-primary" href="#">View All</a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="ec-vendor-card-body">
|
|
|
|
|
<canvas id="growthChart"></canvas>
|
|
|
|
|
</div>
|
2024-02-26 18:11:53 +08:00
|
|
|
|
</div> -->
|
2024-02-12 10:35:09 +08:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
<!-- End Vendor dashboard section -->
|
|
|
|
|
|
|
|
|
|
<!-- Footer Start -->
|
|
|
|
|
<?php include "footer.php" ?>
|
|
|
|
|
<!-- Footer Area End -->
|
|
|
|
|
|
|
|
|
|
<!-- Modal -->
|
|
|
|
|
<div class="modal fade" id="ec_quickview_modal" tabindex="-1" role="dialog">
|
|
|
|
|
<div class="modal-dialog modal-dialog-centered" role="document">
|
|
|
|
|
<div class="modal-content">
|
|
|
|
|
<button type="button" class="btn-close qty_close" data-bs-dismiss="modal" aria-label="Close"></button>
|
|
|
|
|
<div class="modal-body">
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-md-5 col-sm-12 col-xs-12">
|
|
|
|
|
<!-- Swiper -->
|
|
|
|
|
<div class="qty-product-cover">
|
|
|
|
|
<div class="qty-slide">
|
|
|
|
|
<img class="img-responsive" src="assets/images/product-image/3_1.jpg" alt="">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="qty-slide">
|
|
|
|
|
<img class="img-responsive" src="assets/images/product-image/3_2.jpg" alt="">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="qty-slide">
|
|
|
|
|
<img class="img-responsive" src="assets/images/product-image/3_3.jpg" alt="">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="qty-slide">
|
|
|
|
|
<img class="img-responsive" src="assets/images/product-image/3_4.jpg" alt="">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="qty-slide">
|
|
|
|
|
<img class="img-responsive" src="assets/images/product-image/3_5.jpg" alt="">
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="qty-nav-thumb">
|
|
|
|
|
<div class="qty-slide">
|
|
|
|
|
<img class="img-responsive" src="assets/images/product-image/3_1.jpg" alt="">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="qty-slide">
|
|
|
|
|
<img class="img-responsive" src="assets/images/product-image/3_2.jpg" alt="">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="qty-slide">
|
|
|
|
|
<img class="img-responsive" src="assets/images/product-image/3_3.jpg" alt="">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="qty-slide">
|
|
|
|
|
<img class="img-responsive" src="assets/images/product-image/3_4.jpg" alt="">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="qty-slide">
|
|
|
|
|
<img class="img-responsive" src="assets/images/product-image/3_5.jpg" alt="">
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-md-7 col-sm-12 col-xs-12">
|
|
|
|
|
<div class="quickview-pro-content">
|
|
|
|
|
<h5 class="ec-quick-title"><a href="shop-left-sidebar-col-4.php">Handbag leather purse for women</a>
|
|
|
|
|
</h5>
|
|
|
|
|
<div class="ec-quickview-rating">
|
|
|
|
|
<i class="ecicon eci-star fill"></i>
|
|
|
|
|
<i class="ecicon eci-star fill"></i>
|
|
|
|
|
<i class="ecicon eci-star fill"></i>
|
|
|
|
|
<i class="ecicon eci-star fill"></i>
|
|
|
|
|
<i class="ecicon eci-star"></i>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="ec-quickview-desc">Lorem Ipsum is simply dummy text of the printing and
|
|
|
|
|
typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever
|
|
|
|
|
since the 1500s,</div>
|
|
|
|
|
<div class="ec-quickview-price">
|
|
|
|
|
<span class="old-price">$100.00</span>
|
|
|
|
|
<span class="new-price">$80.00</span>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="ec-pro-variation">
|
|
|
|
|
<div class="ec-pro-variation-inner ec-pro-variation-color">
|
|
|
|
|
<span>Color</span>
|
|
|
|
|
<div class="ec-pro-color">
|
|
|
|
|
<ul class="ec-opt-swatch">
|
|
|
|
|
<li><span style="background-color:#696d62;"></span></li>
|
|
|
|
|
<li><span style="background-color:#d73808;"></span></li>
|
|
|
|
|
<li><span style="background-color:#577023;"></span></li>
|
|
|
|
|
<li><span style="background-color:#2ea1cd;"></span></li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="ec-pro-variation-inner ec-pro-variation-size ec-pro-size">
|
|
|
|
|
<span>Size</span>
|
|
|
|
|
<div class="ec-pro-variation-content">
|
|
|
|
|
<ul class="ec-opt-size">
|
|
|
|
|
<li class="active"><a href="#" class="ec-opt-sz" data-tooltip="Small">S</a></li>
|
|
|
|
|
<li><a href="#" class="ec-opt-sz" data-tooltip="Medium">M</a></li>
|
|
|
|
|
<li><a href="#" class="ec-opt-sz" data-tooltip="Large">X</a></li>
|
|
|
|
|
<li><a href="#" class="ec-opt-sz" data-tooltip="Extra Large">XL</a></li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="ec-quickview-qty">
|
|
|
|
|
<div class="qty-plus-minus">
|
|
|
|
|
<input class="qty-input" type="text" name="ec_qtybtn" value="1" />
|
|
|
|
|
</div>
|
|
|
|
|
<div class="ec-quickview-cart ">
|
|
|
|
|
<button class="btn btn-primary"><i class="fi-rr-shopping-basket"></i> Add To Cart</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- Modal end -->
|
|
|
|
|
|
|
|
|
|
<!-- Footer navigation panel for responsive display -->
|
|
|
|
|
<div class="ec-nav-toolbar">
|
|
|
|
|
<div class="container">
|
|
|
|
|
<div class="ec-nav-panel">
|
|
|
|
|
<div class="ec-nav-panel-icons">
|
|
|
|
|
<a href="#ec-mobile-menu" class="navbar-toggler-btn ec-header-btn ec-side-toggle"><i class="fi-rr-menu-burger"></i></a>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="ec-nav-panel-icons">
|
|
|
|
|
<a href="#ec-side-cart" class="toggle-cart ec-header-btn ec-side-toggle"><i class="fi-rr-shopping-bag"></i><span class="ec-cart-noti ec-header-count cart-count-lable">3</span></a>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="ec-nav-panel-icons">
|
|
|
|
|
<a href="index.php" class="ec-header-btn"><i class="fi-rr-home"></i></a>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="ec-nav-panel-icons">
|
|
|
|
|
<a href="wishlist.html" class="ec-header-btn"><i class="fi-rr-heart"></i><span class="ec-cart-noti">4</span></a>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="ec-nav-panel-icons">
|
|
|
|
|
<a href="login.php" class="ec-header-btn"><i class="fi-rr-user"></i></a>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- Footer navigation panel for responsive display end -->
|
|
|
|
|
|
2024-02-20 15:54:42 +08:00
|
|
|
|
<!-- raymart remove popup feb 20 2024 -->
|
2024-02-12 10:35:09 +08:00
|
|
|
|
<!-- Recent Purchase Popup -->
|
2024-02-20 15:54:42 +08:00
|
|
|
|
<!-- <div class="recent-purchase">
|
2024-02-12 10:35:09 +08:00
|
|
|
|
<img src="assets/images/product-image/1.jpg" alt="payment image">
|
|
|
|
|
<div class="detail">
|
|
|
|
|
<p>Someone in new just bought</p>
|
|
|
|
|
<h6>stylish baby shoes</h6>
|
|
|
|
|
<p>10 Minutes ago</p>
|
|
|
|
|
</div>
|
|
|
|
|
<a href="javascript:void(0)" class="icon-btn recent-close">×</a>
|
2024-02-20 15:54:42 +08:00
|
|
|
|
</div> -->
|
2024-02-12 10:35:09 +08:00
|
|
|
|
<!-- Recent Purchase Popup end -->
|
|
|
|
|
|
|
|
|
|
<!-- Cart Floating Button -->
|
|
|
|
|
<div class="ec-cart-float">
|
|
|
|
|
<a href="#ec-side-cart" class="ec-header-btn ec-side-toggle">
|
|
|
|
|
<div class="header-icon"><i class="fi-rr-shopping-basket"></i>
|
|
|
|
|
</div>
|
|
|
|
|
<span class="ec-cart-count cart-count-lable">3</span>
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- Cart Floating Button end -->
|
|
|
|
|
|
|
|
|
|
<!-- Whatsapp -->
|
|
|
|
|
<div class="ec-style ec-right-bottom">
|
|
|
|
|
<!-- Start Floating Panel Container -->
|
|
|
|
|
<div class="ec-panel">
|
|
|
|
|
<!-- Panel Header -->
|
|
|
|
|
<div class="ec-header">
|
|
|
|
|
<strong>Need Help?</strong>
|
|
|
|
|
<p>Chat with us on WhatsApp</p>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- Panel Content -->
|
|
|
|
|
<div class="ec-body">
|
|
|
|
|
<ul>
|
|
|
|
|
<!-- Start Single Contact List -->
|
|
|
|
|
<li>
|
|
|
|
|
<a class="ec-list" data-number="918866774266" data-message="Please help me! I have got wrong product - ORDER ID is : #654321485">
|
|
|
|
|
<div class="d-flex bd-highlight">
|
|
|
|
|
<!-- Profile Picture -->
|
|
|
|
|
<div class="ec-img-cont">
|
|
|
|
|
<img src="assets/images/whatsapp/profile_01.jpg" class="ec-user-img" alt="Profile image">
|
|
|
|
|
<span class="ec-status-icon"></span>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- Display Name & Last Seen -->
|
|
|
|
|
<div class="ec-user-info">
|
|
|
|
|
<span>Sahar Darya</span>
|
|
|
|
|
<p>Sahar left 7 mins ago</p>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- Chat iCon -->
|
|
|
|
|
<div class="ec-chat-icon">
|
|
|
|
|
<i class="fa fa-whatsapp"></i>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
|
<!--/ End Single Contact List -->
|
|
|
|
|
<!-- Start Single Contact List -->
|
|
|
|
|
<li>
|
|
|
|
|
<a class="ec-list" data-number="918866774266" data-message="Please help me! I have got wrong product - ORDER ID is : #654321485">
|
|
|
|
|
<div class="d-flex bd-highlight">
|
|
|
|
|
<!-- Profile Picture -->
|
|
|
|
|
<div class="ec-img-cont">
|
|
|
|
|
<img src="assets/images/whatsapp/profile_02.jpg" class="ec-user-img" alt="Profile image">
|
|
|
|
|
<span class="ec-status-icon ec-online"></span>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- Display Name & Last Seen -->
|
|
|
|
|
<div class="ec-user-info">
|
|
|
|
|
<span>Yolduz Rafi</span>
|
|
|
|
|
<p>Yolduz is online</p>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- Chat iCon -->
|
|
|
|
|
<div class="ec-chat-icon">
|
|
|
|
|
<i class="fa fa-whatsapp"></i>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
|
<!--/ End Single Contact List -->
|
|
|
|
|
<!-- Start Single Contact List -->
|
|
|
|
|
<li>
|
|
|
|
|
<a class="ec-list" data-number="918866774266" data-message="Please help me! I have got wrong product - ORDER ID is : #654321485">
|
|
|
|
|
<div class="d-flex bd-highlight">
|
|
|
|
|
<!-- Profile Picture -->
|
|
|
|
|
<div class="ec-img-cont">
|
|
|
|
|
<img src="assets/images/whatsapp/profile_03.jpg" class="ec-user-img" alt="Profile image">
|
|
|
|
|
<span class="ec-status-icon ec-offline"></span>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- Display Name & Last Seen -->
|
|
|
|
|
<div class="ec-user-info">
|
|
|
|
|
<span>Nargis Hawa</span>
|
|
|
|
|
<p>Nargis left 30 mins ago</p>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- Chat iCon -->
|
|
|
|
|
<div class="ec-chat-icon">
|
|
|
|
|
<i class="fa fa-whatsapp"></i>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
|
<!--/ End Single Contact List -->
|
|
|
|
|
<!-- Start Single Contact List -->
|
|
|
|
|
<li>
|
|
|
|
|
<a class="ec-list" data-number="918866774266" data-message="Please help me! I have got wrong product - ORDER ID is : #654321485">
|
|
|
|
|
<div class="d-flex bd-highlight">
|
|
|
|
|
<!-- Profile Picture -->
|
|
|
|
|
<div class="ec-img-cont">
|
|
|
|
|
<img src="assets/images/whatsapp/profile_04.jpg" class="ec-user-img" alt="Profile image">
|
|
|
|
|
<span class="ec-status-icon ec-offline"></span>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- Display Name & Last Seen -->
|
|
|
|
|
<div class="ec-user-info">
|
|
|
|
|
<span>Khadija Mehr</span>
|
|
|
|
|
<p>Khadija left 50 mins ago</p>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- Chat iCon -->
|
|
|
|
|
<div class="ec-chat-icon">
|
|
|
|
|
<i class="fa fa-whatsapp"></i>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
|
<!--/ End Single Contact List -->
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<!--/ End Floating Panel Container -->
|
|
|
|
|
<!-- Start Right Floating Button-->
|
|
|
|
|
<div class="ec-right-bottom">
|
|
|
|
|
<div class="ec-box">
|
|
|
|
|
<div class="ec-button rotateBackward">
|
|
|
|
|
<img class="whatsapp" src="assets/images/common/whatsapp.png" alt="whatsapp icon" />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<!--/ End Right Floating Button-->
|
|
|
|
|
</div>
|
|
|
|
|
<!-- Whatsapp end -->
|
|
|
|
|
|
|
|
|
|
<!-- Feature tools -->
|
|
|
|
|
<div class="ec-tools-sidebar-overlay"></div>
|
|
|
|
|
<div class="ec-tools-sidebar">
|
|
|
|
|
<div class="tool-title">
|
|
|
|
|
<h3>Features</h3>
|
|
|
|
|
</div>
|
|
|
|
|
<a href="#" class="ec-tools-sidebar-toggle in-out">
|
|
|
|
|
<img alt="icon" src="assets/images/common/settings.png" />
|
|
|
|
|
</a>
|
|
|
|
|
<div class="ec-tools-detail">
|
|
|
|
|
<div class="ec-tools-sidebar-content ec-change-color ec-color-desc">
|
|
|
|
|
<h3>Color Scheme</h3>
|
|
|
|
|
<ul class="bg-panel">
|
|
|
|
|
<li class="active" data-color="01"><a href="#" class="colorcode1"></a></li>
|
|
|
|
|
<li data-color="02"><a href="#" class="colorcode2"></a></li>
|
|
|
|
|
<li data-color="03"><a href="#" class="colorcode3"></a></li>
|
|
|
|
|
<li data-color="04"><a href="#" class="colorcode4"></a></li>
|
|
|
|
|
<li data-color="05"><a href="#" class="colorcode5"></a></li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="ec-tools-sidebar-content">
|
|
|
|
|
<h3>Backgrounds</h3>
|
|
|
|
|
<ul class="bg-panel">
|
|
|
|
|
<li class="bg"><a class="back-bg-1" id="bg-1">Background-1</a></li>
|
|
|
|
|
<li class="bg"><a class="back-bg-2" id="bg-2">Background-2</a></li>
|
|
|
|
|
<li class="bg"><a class="back-bg-3" id="bg-3">Background-3</a></li>
|
|
|
|
|
<li class="bg"><a class="back-bg-4" id="bg-4">Default</a></li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="ec-tools-sidebar-content">
|
|
|
|
|
<h3>Full Screen mode</h3>
|
|
|
|
|
<div class="ec-fullscreen-mode">
|
|
|
|
|
<div class="ec-fullscreen-switch">
|
|
|
|
|
<div class="ec-fullscreen-btn">Mode</div>
|
|
|
|
|
<div class="ec-fullscreen-on">On</div>
|
|
|
|
|
<div class="ec-fullscreen-off">Off</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="ec-tools-sidebar-content">
|
|
|
|
|
<h3>Dark mode</h3>
|
|
|
|
|
<div class="ec-change-mode">
|
|
|
|
|
<div class="ec-mode-switch">
|
|
|
|
|
<div class="ec-mode-btn">Mode</div>
|
|
|
|
|
<div class="ec-mode-on">On</div>
|
|
|
|
|
<div class="ec-mode-off">Off</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="ec-tools-sidebar-content">
|
|
|
|
|
<h3>RTL mode</h3>
|
|
|
|
|
<div class="ec-change-rtl">
|
|
|
|
|
<div class="ec-rtl-switch">
|
|
|
|
|
<div class="ec-rtl-btn">Rtl</div>
|
|
|
|
|
<div class="ec-rtl-on">On</div>
|
|
|
|
|
<div class="ec-rtl-off">Off</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="ec-tools-sidebar-content">
|
|
|
|
|
<h3>Clear local storage</h3>
|
|
|
|
|
<a class="clear-cach" href="javascript:void(0)">Clear Cache & Default</a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- Feature tools end -->
|
|
|
|
|
|
|
|
|
|
<!-- Vendor JS -->
|
|
|
|
|
<script src="assets/js/vendor/jquery-3.5.1.min.js"></script>
|
|
|
|
|
<script src="assets/js/vendor/popper.min.js"></script>
|
|
|
|
|
<script src="assets/js/vendor/bootstrap.min.js"></script>
|
|
|
|
|
<script src="assets/js/vendor/jquery-migrate-3.3.0.min.js"></script>
|
|
|
|
|
<script src="assets/js/vendor/modernizr-3.11.2.min.js"></script>
|
|
|
|
|
|
|
|
|
|
<!--Plugins JS-->
|
|
|
|
|
<script src="assets/js/plugins/swiper-bundle.min.js"></script>
|
|
|
|
|
<script src="assets/js/plugins/nouislider.js"></script>
|
|
|
|
|
<script src="assets/js/plugins/countdownTimer.min.js"></script>
|
|
|
|
|
<script src="assets/js/plugins/scrollup.js"></script>
|
|
|
|
|
<script src="assets/js/plugins/jquery.zoom.min.js"></script>
|
|
|
|
|
<script src="assets/js/plugins/slick.min.js"></script>
|
|
|
|
|
<script src="assets/js/plugins/infiniteslidev2.js"></script>
|
|
|
|
|
<script src="assets/js/vendor/jquery.magnific-popup.min.js"></script>
|
|
|
|
|
<script src="assets/js/plugins/chart.min.js"></script>
|
|
|
|
|
<script src="assets/js/plugins/jquery.sticky-sidebar.js"></script>
|
|
|
|
|
|
|
|
|
|
<!-- Main Js -->
|
|
|
|
|
<script src="assets/js/chart-main.js"></script>
|
|
|
|
|
<script src="assets/js/main.js"></script>
|
|
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
|
|
|
|
|
</html>
|