-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu_list.php
160 lines (151 loc) · 4.13 KB
/
menu_list.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<?php
$header = 20;
$subheader = "Menu";
include "desaign/configuration.php";
include "desaign/databases.php";
include "desaign/title.php" ;
include "desaign/css.php";
include "desaign/session.php";
?>
</head>
<body class="page-header-fixed page-quick-sidebar-over-content page-sidebar-closed-hide-logo page-container-bg-solid">
<?php
include "desaign/nav_header.php";
?>
<div class="clearfix">
</div>
<!-- BEGIN CONTAINER -->
<div class="page-container">
<?php
include "desaign/menu.php";
?>
<!-- BEGIN CONTENT -->
<div class="page-content-wrapper">
<div class="page-content">
<!-- BEGIN PAGE HEADER-->
<div class="page-bar">
<ul class="page-breadcrumb">
<li>
<i class="icon-settings"></i>
<a href="">Master Data</a>
<i class="fa fa-angle-right"></i>
</li>
<li>
<a href="menu_list.php">List Menu</a>
</li>
</ul>
</div>
<!-- END PAGE HEADER-->
<!-- BEGIN DASHBOARD STATS -->
<div class="row">
<!-- BEGIN TAB PORTLET-->
<div class="portlet box green">
<div class="portlet-title">
<div class="caption">
<i class="fa fa-th-list"></i> List Menu
</div>
<ul class="nav nav-tabs">
<li class="active">
<a href="#portlet_tab1" data-toggle="tab">
All </a>
</li>
<li>
<a href="#portlet_tab2" data-toggle="tab">
Active </a>
</li>
<li>
<a href="#portlet_tab3" data-toggle="tab">
Block </a>
</li>
</ul>
</div>
<div class="portlet-body">
<div class="tab-content">
<div class="tab-pane active" id="portlet_tab1">
<p>
<a class="btn green" href="menu_add.php"><i class="fa fa-plus"></i> Add Menu</a>
</p>
<div class="portlet-body">
<div class="table-container">
<table class="table table-striped table-bordered table-hover" id="list_menu">
<thead>
<tr role="row" class="heading">
<th>No</th>
<th>Name</th>
<th>List Menu</th>
<th>Status</th>
<th>Detail</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</div>
<div class="tab-pane" id="portlet_tab2">
<p>
<a class="btn green" href="menu_add.php"><i class="fa fa-plus"></i> Add Menu</a>
</p>
<div class="portlet-body">
<div class="table-container">
<table class="table table-striped table-bordered table-hover" id="menu_active">
<thead>
<tr role="row" class="heading">
<th>No</th>
<th>Name</th>
<th>List Menu</th>
<th>Status</th>
<th>Detail</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</div>
<div class="tab-pane" id="portlet_tab3">
<p>
<a class="btn green" href="Menu_add.php"><i class="fa fa-plus"></i> Add Menu</a>
</p>
<div class="portlet-body">
<div class="table-container">
<table class="table table-striped table-bordered table-hover" id="menu_block">
<thead>
<tr role="row" class="heading">
<th>No</th>
<th>Name</th>
<th>List Menu</th>
<th>Status</th>
<th>Detail</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- END TAB PORTLET-->
</div>
</div>
</div>
<!-- END CONTENT -->
</div>
<!-- END CONTAINER -->
<!-- BEGIN FOOTER -->
<script src="assets/admin/pages/scripts/menu-ajax.js"></script>
<?php
include "desaign/copyright2.php";
include "desaign/script.php";
?>
</body>
<!-- END BODY -->
</html>