-
Notifications
You must be signed in to change notification settings - Fork 40
/
category.php
115 lines (104 loc) · 4.55 KB
/
category.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<?php
require_once('include/login/auth.php');
require_once('include/debug.php');
?>
<!DOCTYPE HTML>
<html>
<head>
<link rel="stylesheet" type="text/css" href="include/style.css" media="screen"/>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<link rel="shortcut icon" href="favicon.ico" />
<link rel="apple-touch-icon" href="img/apple.png" />
<title>Category - ecDB</title>
<?php include_once("include/analytics.php") ?>
</head>
<body>
<div id="wrapper">
<!-- Header -->
<?php include 'include/header.php'; ?>
<!-- END -->
<!-- Main menu -->
<?php include 'include/menu.php'; ?>
<!-- END -->
<!-- Main content -->
<div id="content">
<div class="subMenu">
<ul>
<?php
include('include/include_category_head.php');
$Head = new NameHead;
$Head->Head();
?>
</ul>
</div>
<div class="subSubMenu">
<ul>
<?php
include('include/include_category_sub.php');
$Sub = new NameSub;
$Sub->Sub();
?>
</ul>
</div>
<table class="globalTables" cellpadding="0" cellspacing="0">
<thead>
<tr>
<th></th>
<th><a href="?
<?php if(isset($_GET['subcat'])) {
echo 'subcat';
}
else {
echo 'cat';
}
?>
=
<?php if(isset($_GET['cat'])) {
echo $_GET['cat'];
}
if(isset($_GET['subcat'])) {
echo $_GET['subcat'];
}
?>
&by=name&order=
<?php if(isset($_GET['order'])) {
$order = $_GET['order'];
if ($order == 'asc') {
echo 'desc';
}
else {
echo 'asc';
}
}
else {
echo 'desc';
}
?>
">Name</a></th>
<th><a href="?<?php if(isset($_GET['subcat'])) {echo 'subcat';}else {echo 'cat';} ?>=<?php if(isset($_GET['cat'])){ echo $_GET['cat'];} if(isset($_GET['subcat'])){ echo $_GET['subcat'];} ?>&by=category&order=<?php if(isset($_GET['order'])) { $order = $_GET['order']; if ($order == 'asc') { echo 'desc'; } else { echo 'asc'; } } else { echo 'desc'; } ?>">Category</a></th>
<th><a href="?<?php if(isset($_GET['subcat'])) {echo 'subcat';}else {echo 'cat';} ?>=<?php if(isset($_GET['cat'])){ echo $_GET['cat'];} if(isset($_GET['subcat'])){ echo $_GET['subcat'];} ?>&by=package&order=<?php if(isset($_GET['order'])) { $order = $_GET['order']; if ($order == 'asc') { echo 'desc'; } else { echo 'asc'; } } else { echo 'desc'; } ?>">Package</a></th>
<th><a href="?<?php if(isset($_GET['subcat'])) {echo 'subcat';}else {echo 'cat';} ?>=<?php if(isset($_GET['cat'])){ echo $_GET['cat'];} if(isset($_GET['subcat'])){ echo $_GET['subcat'];} ?>&by=pins&order=<?php if(isset($_GET['order'])) { $order = $_GET['order']; if ($order == 'asc') { echo 'desc'; } else { echo 'asc'; } } else { echo 'desc'; } ?>">Pins</a></th>
<th>Image</th>
<th>Datasheet</th>
<th><a href="?<?php if(isset($_GET['subcat'])) {echo 'subcat';}else {echo 'cat';} ?>=<?php if(isset($_GET['cat'])){ echo $_GET['cat'];} if(isset($_GET['subcat'])){ echo $_GET['subcat'];} ?>&by=smd&order=<?php if(isset($_GET['order'])) { $order = $_GET['order']; if ($order == 'asc') { echo 'desc'; } else { echo 'asc'; } } else { echo 'desc'; } ?>">SMD</a></th>
<th><a href="?<?php if(isset($_GET['subcat'])) {echo 'subcat';}else {echo 'cat';} ?>=<?php if(isset($_GET['cat'])){ echo $_GET['cat'];} if(isset($_GET['subcat'])){ echo $_GET['subcat'];} ?>&by=price&order=<?php if(isset($_GET['order'])) { $order = $_GET['order']; if ($order == 'asc') { echo 'desc'; } else { echo 'asc'; } } else { echo 'desc'; } ?>">Price</a></th>
<th><a href="?<?php if(isset($_GET['subcat'])) {echo 'subcat';}else {echo 'cat';} ?>=<?php if(isset($_GET['cat'])){ echo $_GET['cat'];} if(isset($_GET['subcat'])){ echo $_GET['subcat'];} ?>&by=quantity&order=<?php if(isset($_GET['order'])) { $order = $_GET['order']; if ($order == 'asc') { echo 'desc'; } else { echo 'asc'; } } else { echo 'desc'; } ?>">Quantity</a></th>
<th>Comment</th>
</tr>
</thead>
<tbody>
<?php
include('include/include.php');
$Category = new ShowComponents;
$Category->Category();
?>
</tbody>
</table>
</div>
<!-- END -->
<!-- Text outside the main content -->
<?php include 'include/footer.php'; ?>
<!-- END -->
</div>
</body>
</html>