4 Star 9 Fork 5

Gitee 极速下载/mantisbt

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/mantisbt/mantisbt
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
account_sponsor_page.php 12.65 KB
一键复制 编辑 原始数据 按行查看 历史
Damien Regad 提交于 2021-01-04 00:34 . PR review fixes
<?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/>.
/**
* CALLERS
* This page is called from:
* - print_menu()
* - print_account_menu()
*
* EXPECTED BEHAVIOUR
* - Display the user's current sponsorships
* - Allow the user to edit the payment flag
*
* CALLS
* This page calls the following pages:
* - account_sponsor_update.php (to save changes)
*
* RESTRICTIONS & PERMISSIONS
* - User must be authenticated, and not anonymous
* - sponsorship must be enabled
*
* @package MantisBT
* @copyright Copyright 2000 - 2002 Kenzaburo Ito - kenito@300baud.org
* @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 bug_api.php
* @uses config_api.php
* @uses constant_inc.php
* @uses current_user_api.php
* @uses database_api.php
* @uses form_api.php
* @uses gpc_api.php
* @uses helper_api.php
* @uses html_api.php
* @uses lang_api.php
* @uses print_api.php
* @uses project_api.php
* @uses sponsorship_api.php
* @uses string_api.php
* @uses version_api.php
*/
require_once( 'core.php' );
require_api( 'access_api.php' );
require_api( 'authentication_api.php' );
require_api( 'bug_api.php' );
require_api( 'config_api.php' );
require_api( 'constant_inc.php' );
require_api( 'current_user_api.php' );
require_api( 'database_api.php' );
require_api( 'form_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( 'project_api.php' );
require_api( 'sponsorship_api.php' );
require_api( 'string_api.php' );
require_api( 'version_api.php' );
require_css( 'status_config.php' );
if( !config_get( 'enable_sponsorship' ) ) {
trigger_error( ERROR_SPONSORSHIP_NOT_ENABLED, ERROR );
}
# anonymous users are not allowed to sponsor issues
if( current_user_is_anonymous() ) {
access_denied();
}
$t_show_all = gpc_get_bool( 'show_all', false );
# start the page
layout_page_header( lang_get( 'my_sponsorship' ) );
layout_page_begin();
$t_project = helper_get_current_project();
print_account_menu( 'account_sponsor_page.php' );
?>
<br />
<table class="width100" cellspacing="1">
<tr>
<td class="bold">
<?php echo lang_get( 'my_sponsorship' ) ?>
</td>
</tr>
</table>
<?php
# get issues user has sponsored
$t_user = auth_get_current_user_id();
$t_resolved = config_get( 'bug_resolved_status_threshold' );
$t_payment = config_get( 'payment_enable', 0 );
$t_project_clause = helper_project_specific_where( $t_project );
$t_query = 'SELECT b.id as bug, s.id as sponsor, s.paid, b.project_id, b.fixed_in_version, b.status
FROM {bug} b, {sponsorship} s
WHERE s.user_id=' . db_param() . ' AND s.bug_id = b.id ' .
( $t_show_all ? '' : 'AND ( b.status < ' . db_param() . ' OR s.paid < ' . SPONSORSHIP_PAID . ')' ) . '
AND ' . $t_project_clause . '
ORDER BY s.paid ASC, b.project_id ASC, b.fixed_in_version ASC, b.status ASC, b.id DESC';
$t_result = db_query( $t_query, $t_show_all ? array( $t_user ) : array( $t_user , $t_resolved ) );
$t_sponsors = array();
while( $t_row = db_fetch_array( $t_result ) ) {
$t_sponsors[] = $t_row;
}
$t_sponsor_count = count( $t_sponsors );
if( $t_sponsor_count === 0 ) {
echo '<p>' . lang_get( 'no_own_sponsored' ) . '</p>';
} else {
?>
<!-- # Edit own sponsorship Form BEGIN -->
<br />
<div>
<table class="width100" cellspacing="1">
<colgroup>
<col style="width:10%" />
<col style="width:8%" />
<col style="width:7%" />
<col style="width:10%" />
<col style="width:10%" />
<col style="width:30%" />
<col style="width:8%" />
<col style="width:7%" />
<col style="width:10%" />
</colgroup>
<!-- Headings -->
<tr>
<td class="bold" colspan="9">
<?php echo lang_get( 'own_sponsored' ) ?>
</td>
</tr>
<tr>
<td class="form-title"><?php echo lang_get( 'email_bug' ) ?></td>
<td class="form-title"><?php echo lang_get( 'email_project' ) ?></td>
<td class="form-title"><?php echo lang_get( 'fixed_in_version' ) ?></td>
<td class="form-title"><?php echo lang_get( 'email_status' ) ?></td>
<td class="form-title"><?php echo lang_get( 'email_handler' ) ?></td>
<td class="form-title"><?php echo lang_get( 'email_summary' ) ?></td>
<td class="form-title"><?php echo lang_get( 'amount' ) ?></td>
<td class="form-title"><?php echo lang_get( 'status' ) ?></td>
<td class="form-title">&#160;</td>
</tr>
<?php
$t_total_owing = 0;
$t_total_paid = 0;
for( $i = 0; $i < $t_sponsor_count; ++$i ) {
$t_sponsor_row = $t_sponsors[$i];
$t_bug = bug_get( $t_sponsor_row['bug'] );
$t_sponsor = sponsorship_get( $t_sponsor_row['sponsor'] );
# describe bug
$t_status = string_attribute( get_enum_element( 'status', $t_bug->status, auth_get_current_user_id(), $t_bug->project_id ) );
$t_resolution = string_attribute( get_enum_element( 'resolution', $t_bug->resolution, auth_get_current_user_id(), $t_bug->project_id ) );
$t_version_id = version_get_id( $t_bug->fixed_in_version, $t_bug->project_id );
if( ( false !== $t_version_id ) && ( VERSION_RELEASED == version_get_field( $t_version_id, 'released' ) ) ) {
$t_released_label = '<a title="' . lang_get( 'released' ) . '">' . $t_bug->fixed_in_version . '</a>';
} else {
$t_released_label = $t_bug->fixed_in_version;
}
# choose color based on status
$t_status_css = html_get_status_css_bg( $t_bug->status, auth_get_current_user_id(), $t_bug->project_id );
echo '<tr class="' . $t_status_css . '">';
echo '<td><a href="' . string_get_bug_view_url( $t_sponsor_row['bug'] ) . '">' . bug_format_id( $t_sponsor_row['bug'] ) . '</a></td>';
echo '<td>' . string_display_line( project_get_field( $t_bug->project_id, 'name' ) ) . '&#160;</td>';
echo '<td>' . $t_released_label . '&#160;</td>';
echo '<td><span class="issue-status" title="' . $t_resolution . '">' . $t_status . '</span></td>';
echo '<td>';
print_user( $t_bug->handler_id );
echo '</td>';
# summary
echo '<td>' . string_display_line( $t_bug->summary );
if( VS_PRIVATE == $t_bug->view_state ) {
echo ' ';
print_icon( 'fa-lock', '', lang_get( 'private' ) );
}
echo '</td>';
# describe sponsorship amount
echo '<td class="pull-right">' . sponsorship_format_amount( $t_sponsor->amount ) . '</td>';
echo '<td>' . get_enum_element( 'sponsorship', $t_sponsor->paid ) . '</td>';
if( SPONSORSHIP_PAID == $t_sponsor->paid ) {
$t_total_paid += $t_sponsor->amount;
} else {
$t_total_owing += $t_sponsor->amount;
}
echo '<td>';
if( $t_payment ) {
echo '(paypal button)';
} else {
echo '&#160;';
}
echo '</td>';
echo '</tr>';
}
?>
<!-- Totals -->
<tr>
<td colspan="5"></td>
<td><?php echo lang_get( 'total_owing' ) ?></td>
<td class="pull-right"><?php echo sponsorship_format_amount( $t_total_owing ) ?></td>
<td colspan="2"></td>
</tr>
<tr>
<td colspan="5"></td>
<td><?php echo lang_get( 'total_paid' ) ?></td>
<td class="pull-right"><?php echo sponsorship_format_amount( $t_total_paid ) ?></td>
<td colspan="2"></td>
</tr>
</table>
</div>
<?php } # end sponsored issues
$t_query = 'SELECT b.id as bug, s.id as sponsor, s.paid, b.project_id, b.fixed_in_version, b.status
FROM {bug} b, {sponsorship} s
WHERE b.handler_id=' . db_param() . ' AND s.bug_id = b.id ' .
( $t_show_all ? '' : 'AND ( b.status < ' . db_param() . ' OR s.paid < ' . SPONSORSHIP_PAID . ')' ) . '
AND ' . $t_project_clause . '
ORDER BY s.paid ASC, b.project_id ASC, b.fixed_in_version ASC, b.status ASC, b.id DESC';
$t_result = db_query( $t_query, $t_show_all ? array( $t_user ) : array( $t_user , $t_resolved ) );
$t_sponsors = array();
while( $t_row = db_fetch_array( $t_result ) ) {
$t_sponsors[] = $t_row;
}
$t_sponsor_count = count( $t_sponsors );
if( $t_sponsor_count === 0 ) {
echo '<p>' . lang_get( 'no_sponsored' ) . '</p>';
} else {
?>
<!-- # Edit sponsorship Form BEGIN -->
<br />
<div>
<form method="post" action="account_sponsor_update.php">
<?php echo form_security_field( 'account_sponsor_update' ) ?>
<table class="width100" cellspacing="1">
<colgroup>
<col style="width:10%" />
<col style="width:8%" />
<col style="width:7%" />
<col style="width:10%" />
<col style="width:35%" />
<col style="width:10%" />
<col style="width:10%" />
<col style="width:10%" />
</colgroup>
<!-- Headings -->
<tr>
<td class="bold" colspan="8">
<?php echo lang_get( 'issues_handled' ) ?>
</td>
</tr>
<tr>
<td class="form-title"><?php echo lang_get( 'email_bug' ) ?></td>
<td class="form-title"><?php echo lang_get( 'email_project' ) ?></td>
<td class="form-title"><?php echo lang_get( 'fixed_in_version' ) ?></td>
<td class="form-title"><?php echo lang_get( 'email_status' ) ?></td>
<td class="form-title"><?php echo lang_get( 'email_summary' ) ?></td>
<td class="form-title"><?php echo lang_get( 'sponsor' ) ?></td>
<td class="form-title"><?php echo lang_get( 'amount' ) ?></td>
<td class="form-title"><?php echo lang_get( 'status' ) ?></td>
</tr>
<?php
$t_bug_list = array();
$t_total_owing = 0;
$t_total_paid = 0;
for( $i = 0; $i < $t_sponsor_count; ++$i ) {
$t_sponsor_row = $t_sponsors[$i];
$t_bug = bug_get( $t_sponsor_row['bug'] );
$t_sponsor = sponsorship_get( $t_sponsor_row['sponsor'] );
$t_buglist[] = $t_sponsor_row['bug'] . ':' . $t_sponsor_row['sponsor'];
# describe bug
$t_status = string_attribute( get_enum_element( 'status', $t_bug->status, auth_get_current_user_id(), $t_bug->project_id ) );
$t_resolution = string_attribute( get_enum_element( 'resolution', $t_bug->resolution, auth_get_current_user_id(), $t_bug->project_id ) );
$t_version_id = version_get_id( $t_bug->fixed_in_version, $t_bug->project_id );
if( ( false !== $t_version_id ) && ( VERSION_RELEASED == version_get_field( $t_version_id, 'released' ) ) ) {
$t_released_label = '<a title="' . lang_get( 'released' ) . '">' . $t_bug->fixed_in_version . '</a>';
} else {
$t_released_label = $t_bug->fixed_in_version;
}
# choose color based on status
$t_status_css = html_get_status_css_bg( $t_bug->status, auth_get_current_user_id(), $t_bug->project_id );
echo '<tr class="' . $t_status_css . '">';
echo '<td><a href="' . string_get_bug_view_url( $t_sponsor_row['bug'] ) . '">' . bug_format_id( $t_sponsor_row['bug'] ) . '</a></td>';
echo '<td>' . string_display_line( project_get_field( $t_bug->project_id, 'name' ) ) . '&#160;</td>';
echo '<td>' . $t_released_label . '&#160;</td>';
echo '<td><a title="' . $t_resolution . '"><span class="underline">' . $t_status . '</span>&#160;</a></td>';
# summary
echo '<td>' . string_display_line( $t_bug->summary );
if( VS_PRIVATE == $t_bug->view_state ) {
print_icon( 'fa-lock', '', lang_get( 'private' ) );
}
echo '</td>';
# describe sponsorship amount
echo '<td>';
print_user( $t_sponsor->user_id );
echo '</td>';
echo '<td>' . sponsorship_format_amount( $t_sponsor->amount ) . '</td>';
echo '<td><select class="input-sm" name="sponsor_' . $t_row['bug'] . '_' . $t_sponsor->id . '">';
print_enum_string_option_list( 'sponsorship', $t_sponsor->paid );
echo '</select></td>';
echo '</tr>';
if( SPONSORSHIP_PAID == $t_sponsor->paid ) {
$t_total_paid += $t_sponsor->amount;
} else {
$t_total_owing += $t_sponsor->amount;
}
}
$t_hidden_bug_list = implode( ',', $t_buglist );
?>
<!-- Totals -->
<tr>
<td colspan="5"></td>
<td><?php echo lang_get( 'total_owing' ) ?></td>
<td class="pull-right"><?php echo sponsorship_format_amount( $t_total_owing ) ?></td>
<td></td>
</tr>
<tr>
<td colspan="5"></td>
<td><?php echo lang_get( 'total_paid' ) ?></td>
<td class="pull-right"><?php echo sponsorship_format_amount( $t_total_paid ) ?></td>
<td></td>
</tr>
<!-- BUTTONS -->
<tr>
<td colspan="5">&#160;</td>
<!-- Update Button -->
<td colspan="3">
<input type="hidden" name="buglist" value="<?php echo $t_hidden_bug_list ?>" />
<input type="submit" class="button" value="<?php echo lang_get( 'update_sponsorship_button' ) ?>" />
</td>
</tr>
</table>
</form>
</div>
<?php } # end sponsored issues ?>
<br />
<div>
<?php
html_button( 'account_sponsor_page.php',
lang_get( ( $t_show_all ? 'sponsor_hide' : 'sponsor_show' ) ),
array( 'show_all' => ( $t_show_all ? 0 : 1 ) ) );
?>
</div>
<?php
layout_page_end();
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/mirrors/mantisbt.git
git@gitee.com:mirrors/mantisbt.git
mirrors
mantisbt
mantisbt
master

搜索帮助