-
Notifications
You must be signed in to change notification settings - Fork 0
/
employee_approval.php
73 lines (66 loc) · 2.99 KB
/
employee_approval.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php
include("includes/employee_session.php");
include_once("includes/database.php");
$rows = mysqlidb::fetchAllRows("SELECT * FROM product
INNER JOIN vendor ON vendor.VendorId = product.vendorId
WHERE ProductStatus='Pending' LIMIT 10");
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="images/shirtlogo.png" type="image/x-icon">
<link href="styles/template.css" type="text/css" rel="stylesheet">
<link href="styles/pagetopbar.css" type="text/css" rel="stylesheet">
<link href="styles/khor.css" type="text/css" rel="stylesheet">
<title>Product Approvals</title>
</head>
<body>
<!-- ----------------------------------- TOP-BAR ----------------------------------- -->
<?php include "includes/pagetopbaremployee.php" ?>
<!-- ----------------------------------- TOP-BAR ----------------------------------- -->
<div class="body-wrapper">
<div></div>
<!-- ----------------------------------- BODY ----------------------------------- -->
<div class="content-wrapper container">
<h1>Product Approvals</h1>
<div class="employee-wrapper p-2">
<?php include "includes/employee_sidenav.php" ?>
<table class="employee-table bg-white">
<tr>
<th class="employee-table-header-tl" width="25%">Item Image</th>
<th width="25%">Item Name</th>
<th width="25%">Item Vendor</th>
<th class="employee-table-header-tr" width="25%">Action</th>
</tr>
<?php
if (count($rows) > 0) {
foreach ($rows as $row) {
$imgurl = explode(",", $row['ProductImage'])[0];
echo "<tr>
<td width=\"25%\"><img src=\"$imgurl\" alt=\"\" class=\"table-image\"></td>
<td width=\"25%\">{$row['ProductName']}</td>
<td width=\"25%\">{$row['ShopName']}</td>
<td width=\"25%\">
<a href=\"product_approval.php?productid={$row['ProductId']}&action=approve\" class=\"btn-primary p-1 visited-white\">Approve</a>
<a href=\"product_approval.php?productid={$row['ProductId']}&action=deny\" class=\"btn-primary p-1 visited-white\">Deny</a>
</td>
</tr>";
}
} else {
echo "<tr><td colspan=\"4\"><h2 class=\"cultured-dark\">There are no product approvals.</h2></td></tr>";
}
?>
</table>
</div>
</div>
<!-- ----------------------------------- BODY ----------------------------------- -->
<!-- ----------------------------------- FOOTER ----------------------------------- -->
<?php include "includes/footeremployee.html" ?>
<!-- -----------------------------------FOOTER----------------------------------- -->
</div>
</body>
<script src="scripts/main.js"></script>
<script src="scripts/employee_sidenav.js"></script>
</html>