forked from mantisbt/mantisbt
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathview_user_page.php
219 lines (205 loc) · 6.31 KB
/
view_user_page.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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
<?php
# MantisBT - A PHP based bugtracking system
# MantisBT 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 2 of the License, or
# (at your option) any later version.
#
# MantisBT 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 MantisBT. If not, see <http://www.gnu.org/licenses/>.
/**
* View User Page
*
* @package MantisBT
* @copyright Copyright 2002 MantisBT Team - [email protected]
* @link http://www.mantisbt.org
*
* @uses core.php
* @uses access_api.php
* @uses authentication_api.php
* @uses config_api.php
* @uses constant_inc.php
* @uses error_api.php
* @uses gpc_api.php
* @uses helper_api.php
* @uses html_api.php
* @uses lang_api.php
* @uses print_api.php
* @uses string_api.php
* @uses user_api.php
* @uses utility_api.php
*/
require_once( 'core.php' );
require_api( 'access_api.php' );
require_api( 'authentication_api.php' );
require_api( 'config_api.php' );
require_api( 'constant_inc.php' );
require_api( 'error_api.php' );
require_api( 'gpc_api.php' );
require_api( 'helper_api.php' );
require_api( 'html_api.php' );
require_api( 'lang_api.php' );
require_api( 'print_api.php' );
require_api( 'string_api.php' );
require_api( 'user_api.php' );
require_api( 'utility_api.php' );
auth_ensure_user_authenticated();
# extracts the user information for the currently logged in user
# and prefixes it with u_
$f_user_id = gpc_get_int( 'id', auth_get_current_user_id() );
$t_row = user_get_row( $f_user_id );
extract( $t_row, EXTR_PREFIX_ALL, 'u' );
$t_can_manage = access_has_global_level( config_get( 'manage_user_threshold' ) ) &&
access_has_global_level( $u_access_level );
$t_can_see_realname = $t_can_manage || user_show_realname() ||
access_has_project_level( config_get( 'show_user_realname_threshold' ) );
$t_can_see_email = $t_can_manage || access_has_project_level( config_get( 'show_user_email_threshold' ) );
$t_can_impersonate = auth_can_impersonate( $f_user_id );
# In case we're using LDAP to get the email address... this will pull out
# that version instead of the one in the DB
$u_email = user_get_email( $u_id );
$u_realname = user_get_realname( $u_id );
$t_date_format = config_get( 'normal_date_format' );
layout_page_header();
layout_page_begin();
$t_timeline_view_threshold_access = access_has_project_level( config_get( 'timeline_view_threshold' ) );
$t_timeline_view_class = ( $t_timeline_view_threshold_access ) ? "col-md-7" : "col-md-12";
?>
<div class="<?php echo $t_timeline_view_class ?> col-xs-12">
<div class="widget-box widget-color-blue2">
<div class="widget-header widget-header-small">
<h4 class="widget-title lighter">
<i class="ace-icon fa fa-user"></i>
<?php echo lang_get('view_account_title') ?>
</h4>
</div>
<div class="widget-body">
<div class="widget-main no-padding">
<div class="table-responsive">
<table class="table table-bordered table-condensed table-striped">
<fieldset>
<tr>
<th class="category">
<?php echo lang_get( 'username' ) ?>
</th>
<td>
<?php echo string_display_line( $u_username ) ?>
</td>
</tr>
<?php
if( $t_can_see_realname ) { ?>
<tr>
<th class="category">
<?php echo lang_get( 'realname' ) ?>
</th>
<td>
<?php echo string_display_line( $u_realname ); ?>
</td>
</tr>
<?php } ?>
<?php
if( $t_can_see_email ) { ?>
<tr>
<th class="category">
<?php echo lang_get( 'email' ) ?>
</th>
<td>
<?php
if( !is_blank( $u_email ) ) {
print_email_link( $u_email, $u_email );
}
?>
</td>
</tr>
<?php } ?>
<?php
if( $t_can_manage ) { ?>
<tr>
<th class="category">
<?php echo lang_get( 'access_level' ) ?>
</th>
<td>
<?php echo string_display_line( get_enum_element( 'access_levels', $u_access_level ) ); ?>
</td>
</tr>
<tr>
<th class="category">
<?php echo lang_get( 'enabled' ) ?>
</th>
<td>
<?php echo $u_enabled ? lang_get( 'yes' ) : lang_get( 'no' ); ?>
</td>
</tr>
<tr>
<th class="category">
<?php echo lang_get( 'protected' ) ?>
</th>
<td>
<?php echo $u_protected ? lang_get( 'yes' ) : lang_get( 'no' ); ?>
</td>
</tr>
<tr>
<th class="category">
<?php echo lang_get( 'date_created' ) ?>
</th>
<td>
<?php echo date( $t_date_format, $u_date_created ); ?>
</td>
</tr>
<tr>
<th class="category">
<?php echo lang_get( 'last_visit' ) ?>
</th>
<td>
<?php echo date( $t_date_format, $u_last_visit ); ?>
</td>
</tr>
<?php } ?>
</fieldset>
</table>
</div>
</div>
<?php if( $t_can_manage || $t_can_impersonate ) { ?>
<div class="widget-toolbox padding-8 clearfix">
<?php if( $t_can_manage ) { ?>
<form id="manage-user-form" method="get" action="manage_user_edit_page.php" class="pull-left">
<fieldset>
<input type="hidden" name="user_id" value="<?php echo $f_user_id ?>" />
<input type="submit" class="btn btn-primary btn-white btn-round" value="<?php echo lang_get( 'manage_user' ) ?>" /></span>
</fieldset>
</form>
<?php } ?>
<?php if( $t_can_impersonate ) { ?>
<form id="manage-user-impersonate-form" method="post" action="manage_user_impersonate.php" class="pull-right">
<fieldset>
<?php echo form_security_field( 'manage_user_impersonate' ) ?>
<input type="hidden" name="user_id" value="<?php echo $f_user_id ?>" />
<span><input type="submit" class="btn btn-primary btn-white btn-round" value="<?php echo lang_get( 'impersonate_user_button' ) ?>" /></span>
</fieldset>
</form>
<?php } ?>
</div>
<?php } ?>
</div>
</div>
</div>
<?php
if( $t_timeline_view_threshold_access ) {
# Build a filter to show all bugs in current projects
$g_timeline_filter = array();
$g_timeline_filter[FILTER_PROPERTY_HIDE_STATUS] = array( META_FILTER_NONE );
$g_timeline_filter = filter_ensure_valid_filter( $g_timeline_filter );
$g_timeline_user = $f_user_id;
?>
<div class="col-md-5 col-xs-12">
<?php include( $g_core_path . 'timeline_inc.php' ); ?>
<div class="space-10"></div>
</div>
<?php } ?>
<?php
layout_page_end();