-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathproj_list.php
More file actions
138 lines (128 loc) · 3.63 KB
/
Copy pathproj_list.php
File metadata and controls
138 lines (128 loc) · 3.63 KB
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
<?php
require_once('include/login/auth.php');
require_once('include/debug.php');
require_once('include/mysql_connect.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" />
<meta name="description" content="Add your projects here. You will then be able to add components to them and creat BOM-list."/>
<meta name="keywords" content="electronics, components, database, project, inventory"/>
<link rel="shortcut icon" href="favicon.ico" />
<link rel="apple-touch-icon" href="img/apple.png" />
<title>Your Projects - ecDB</title>
<?php include_once("include/analytics.php") ?>
</head>
<body>
<div id="wrapper">
<?php
if(isset($_SESSION['SESS_MEMBER_ID'])==true)
{
?>
<!-- Header -->
<?php include 'include/header.php'; ?>
<!-- END -->
<!-- Main menu -->
<?php include 'include/menu.php'; ?>
<!-- END -->
<?php
}
else
{
include_once("include/include_parse_admin_options.php");
require_once("include/logo_wrapper.php");
?>
<!-- Main menu -->
<?php $selected_menu = "PublicProject"; include_once('include/include_main_menu.php'); ?>
<!-- END -->
<?php
}
?>
<!-- Main content -->
<div id="content">
<?php
if(isset($_SESSION['SESS_MEMBER_ID'])==true)
{
include('include/include_proj_add.php');
$AddProj = new ProjAdd;
$AddProj->AddProj();
$proj_query = mysqli_query($GLOBALS["___mysqli_ston"], "SELECT * FROM projects WHERE project_owner= $owner");
if(mysqli_num_rows($proj_query) == 0)
{
echo '<div class="message orange">To create a BOM-list (Bill Of Material) you have to first create a project. You will then be able to add your components to your project and automaticly create a BOM-list.</div>';
}
?>
<?php
if(isset($_GET['proj_del']) && intval($_GET['proj_del'])==1)
{
?>
<div class="message red">
Project Deleted
</div>
<?php
}
?>
<form class="globalForms" method="post" action="">
<div class="textInput">
<label class="keyWord">Project name</label>
<div class="input"><input name="name" id="name" type="text" class="medium" /></div>
</div>
<div class="buttons">
<div class="input">
<button class="button green" name="submit" type="submit"><span class="icon medium save"></span> Add project</button>
</div>
</div>
</form>
<hr>
<?php
}
else
{
// nothing
}
?>
<table class="globalTables" cellpadding="0" cellspacing="0">
<thead>
<tr>
<th></th>
<th><a href="?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>Unique Components</th>
<th>Qty of components</th>
<th>Available Kits</th>
<th>Total cost</th>
<th>Public</th>
<th>Owner</th>
</tr>
</thead>
<tbody>
<?php
include('include/include_proj_list_projets.php');
$ProjList = new Proj;
$ProjList->ProjList();
?>
</tbody>
</table>
</div>
<!-- END -->
<!-- Text outside the main content -->
<?php include 'include/footer.php'; ?>
<!-- END -->
</div>
</body>
</html>