-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathprofile.php
executable file
·177 lines (99 loc) · 3.7 KB
/
profile.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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
<?php
/* ////////////////////////////////////////////////////////////////////////////////
** Copyright 2010 Matthew Burton, http://matthewburton.org
** Code by Burton and Joshua Knowles, http://auscillate.com
**
** This software is part of the Open Source ACH Project (ACH). You'll find
** all current information about project contributors, installation, updates,
** bugs and more at http://competinghypotheses.org.
**
**
** ACH is free software: you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation, either version 3 of the License, or
** (at your option) any later version.
**
** ACH is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with Open Source ACH. If not, see <http://www.gnu.org/licenses/>.
//////////////////////////////////////////////////////////////////////////////// */
include("code/includes.php");
$username = $_REQUEST['username'];
$name = $_REQUEST['name'];
$display_user = new User();
$display_user->populateFromAttribute($username, "username");
/* if ($base_URL == "https://ach.bridge-ic.net") {
header("location: https://gms.bridge-ic.net/manager/index.html#ReadMemberAction?nodeId=$username&type=User");
}
else { */
?>
<html>
<head>
<title>ACH: <?php if ($display_user->name === NULL) { ?>
No such user
<?php } else { ?><?=$display_user->name?>, aka <?=$display_user->username?> <?php } ?></title>
<?php include("parts/includes.php"); ?>
</head>
<body onload="setTimeout('Effect.Fade(\'statusMessage\')',2500); setTimeout('Effect.Fade(\'statusMessage2\')',2500);">
<?php include("parts/header.php"); ?>
<?php
if( $active_user->logged_in ) { ?>
<?php include("parts/menu_sidebar.php"); ?>
<div class="mainContainer">
<div class="ydsf left"><div class="inner">
<div class="main">
<?php if ($display_user->name === NULL) { ?>
<p>This user does not exist.</p>
<?php } else { ?>
<h2><?=$display_user->name?>
<?php if( $active_user->id == $display_user->id ) { ?>
<a href="<?=$base_URL?>profile/edit">(Edit your profile)</a>
<?php } ?>
</h2>
<?php
$profile_image_path = "/images/user/profile_" . $display_user->id . ".jpg";
?>
<h2><span class="hilight">Public Projects</span></h2>
<?php
$display_user->getDirectoryProjects();
if( count($display_user->projects) == 0){
echo "This user is not a member of any public projects.";
}
else {
?>
<?php
for( $i = 0; $i <= count($display_user->projects); $i++ ) {
$this_project = new Project();
$this_project->populateFromId($display_user->projects[$i]);
if( $this_project->title != "" ) {
?>
<div class="projectList">
<h3><a href="<?=$base_URL?>project/<?=$this_project->id?>"><?=$this_project->title?></a> <?php if( in_array($this_project->id, $display_user->owner_of_projects) ) { echo('<span class="isOwner">Owner</span>'); } ?></h3>
<p class="desc"><?=$this_project->description?></p>
</div>
<?php } } } }?>
<br /><br />
</div></div>
</div>
<?php } else { ?>
<?php include("parts/login_sidebar.php"); ?>
<div class="mainContainer">
<div class="ydsf left"><div class="inner">
<div class="main">
<h2>Access Denied</h2>
<p>You are not authorized to view this page.</p>
</div>
</div></div>
</div>
<?php } ?>
</div>
</div></div>
</div>
<?php include("parts/footer.php"); ?>
</body>
</html>
<?php //} ?>