4 Star 9 Fork 5

Gitee 极速下载/mantisbt

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/mantisbt/mantisbt
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
view_user_page.php 6.66 KB
一键复制 编辑 原始数据 按行查看 历史
<?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 - mantisbt-dev@lists.sourceforge.net
* @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' );
const TIMELINE_INC_ALLOW = true;
auth_ensure_user_authenticated();
# extracts the user information 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 );
if( !$t_row ) {
error_parameters( $f_user_id );
trigger_error( ERROR_USER_BY_ID_NOT_FOUND, ERROR );
}
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">
<?php print_icon( 'fa-user', 'ace-icon' ); ?>
<?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
if( OFF != config_get( 'max_failed_login_count' ) ) { ?>
<tr>
<th class="category">
<?php echo lang_get( 'failed_login_count' ) ?>
</th>
<td>
<?php echo $u_failed_login_count ?>
</td>
</tr>
<?php } ?>
<?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( 'timeline_inc.php' ); ?>
<div class="space-10"></div>
</div>
<?php } ?>
<?php
layout_page_end();
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/mirrors/mantisbt.git
git@gitee.com:mirrors/mantisbt.git
mirrors
mantisbt
mantisbt
master

搜索帮助