代码拉取完成,页面将自动刷新
<?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/>.
/**
* My View include file
* @copyright Copyright 2000 - 2002 Kenzaburo Ito - kenito@300baud.org
* @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net
* @link http://www.mantisbt.org
* @package MantisBT
*
* @uses access_api.php
* @uses bug_api.php
* @uses category_api.php
* @uses config_api.php
* @uses constant_inc.php
* @uses current_user_api.php
* @uses file_api.php
* @uses filter_api.php
* @uses filter_constants_inc.php
* @uses helper_api.php
* @uses icon_api.php
* @uses lang_api.php
* @uses print_api.php
* @uses project_api.php
* @uses string_api.php
*/
if( !defined( 'MY_VIEW_INC_ALLOW' ) ) {
return;
}
require_api( 'access_api.php' );
require_api( 'bug_api.php' );
require_api( 'category_api.php' );
require_api( 'config_api.php' );
require_api( 'constant_inc.php' );
require_api( 'current_user_api.php' );
require_api( 'file_api.php' );
require_api( 'filter_api.php' );
require_api( 'filter_constants_inc.php' );
require_api( 'helper_api.php' );
require_api( 'icon_api.php' );
require_api( 'lang_api.php' );
require_api( 'print_api.php' );
require_api( 'project_api.php' );
require_api( 'string_api.php' );
$t_filter = current_user_get_bug_filter();
if( $t_filter === false ) {
$t_filter = filter_get_default();
}
$t_sort = $t_filter['sort'];
$t_dir = $t_filter['dir'];
$t_bug_resolved_status_threshold = config_get( 'bug_resolved_status_threshold' );
$t_hide_status_default = config_get( 'hide_status_default' );
$t_default_show_changed = config_get( 'default_show_changed' );
$c_filter['assigned'] = filter_create_assigned_to_unresolved( helper_get_current_project(), $t_current_user_id );
$t_url_link_parameters['assigned'] = FILTER_PROPERTY_HANDLER_ID . '=' . $t_current_user_id . '&' . FILTER_PROPERTY_HIDE_STATUS . '=' . $t_bug_resolved_status_threshold;
# @TODO cproensa: make this value configurable
$t_recent_days = 30;
$c_filter['recent_mod'] = filter_create_recently_modified( $t_recent_days );
$t_url_link_parameters['recent_mod'] = FILTER_PROPERTY_HIDE_STATUS . '=none'
. '&' . FILTER_PROPERTY_FILTER_BY_LAST_UPDATED_DATE . '=' . $c_filter['recent_mod'][FILTER_PROPERTY_FILTER_BY_LAST_UPDATED_DATE]
. '&' . FILTER_PROPERTY_LAST_UPDATED_END_DAY . '=' . $c_filter['recent_mod'][FILTER_PROPERTY_LAST_UPDATED_END_DAY]
. '&' . FILTER_PROPERTY_LAST_UPDATED_END_MONTH . '=' . $c_filter['recent_mod'][FILTER_PROPERTY_LAST_UPDATED_END_MONTH]
. '&' . FILTER_PROPERTY_LAST_UPDATED_END_YEAR . '=' . $c_filter['recent_mod'][FILTER_PROPERTY_LAST_UPDATED_END_YEAR]
. '&' . FILTER_PROPERTY_LAST_UPDATED_START_DAY . '=' . $c_filter['recent_mod'][FILTER_PROPERTY_LAST_UPDATED_START_DAY]
. '&' . FILTER_PROPERTY_LAST_UPDATED_START_MONTH . '=' . $c_filter['recent_mod'][FILTER_PROPERTY_LAST_UPDATED_START_MONTH]
. '&' . FILTER_PROPERTY_LAST_UPDATED_START_YEAR . '=' . $c_filter['recent_mod'][FILTER_PROPERTY_LAST_UPDATED_START_YEAR];
$c_filter['reported'] = filter_create_reported_by( helper_get_current_project(), $t_current_user_id );
$t_url_link_parameters['reported'] = FILTER_PROPERTY_REPORTER_ID . '=' . $t_current_user_id . '&' . FILTER_PROPERTY_HIDE_STATUS . '=' . $t_hide_status_default;
$c_filter['resolved'] = array(
FILTER_PROPERTY_CATEGORY_ID => array(
'0' => META_FILTER_ANY,
),
FILTER_PROPERTY_SEVERITY => array(
'0' => META_FILTER_ANY,
),
FILTER_PROPERTY_STATUS => array(
'0' => $t_bug_resolved_status_threshold,
),
FILTER_PROPERTY_HIGHLIGHT_CHANGED => $t_default_show_changed,
FILTER_PROPERTY_REPORTER_ID => array(
'0' => META_FILTER_ANY,
),
FILTER_PROPERTY_HANDLER_ID => array(
'0' => META_FILTER_ANY,
),
FILTER_PROPERTY_RESOLUTION => array(
'0' => META_FILTER_ANY,
),
FILTER_PROPERTY_BUILD => array(
'0' => META_FILTER_ANY,
),
FILTER_PROPERTY_VERSION => array(
'0' => META_FILTER_ANY,
),
FILTER_PROPERTY_HIDE_STATUS => array(
'0' => $t_hide_status_default,
),
FILTER_PROPERTY_MONITOR_USER_ID => array(
'0' => META_FILTER_ANY,
),
);
$t_url_link_parameters['resolved'] = FILTER_PROPERTY_STATUS . '=' . $t_bug_resolved_status_threshold . '&' . FILTER_PROPERTY_HIDE_STATUS . '=' . $t_hide_status_default;
$c_filter['unassigned'] = filter_create_assigned_to_unresolved( helper_get_current_project(), 0 );
$t_url_link_parameters['unassigned'] = FILTER_PROPERTY_HANDLER_ID . '=[none]' . '&' . FILTER_PROPERTY_HIDE_STATUS . '=' . $t_hide_status_default;
# TODO: check. handler value looks wrong
$c_filter['monitored'] = filter_create_monitored_by( helper_get_current_project(), $t_current_user_id );
$t_url_link_parameters['monitored'] = FILTER_PROPERTY_MONITOR_USER_ID . '=' . $t_current_user_id . '&' . FILTER_PROPERTY_HIDE_STATUS . '=' . $t_hide_status_default;
$c_filter['feedback'] = array(
FILTER_PROPERTY_CATEGORY_ID => array(
'0' => META_FILTER_ANY,
),
FILTER_PROPERTY_SEVERITY => array(
'0' => META_FILTER_ANY,
),
FILTER_PROPERTY_STATUS => array(
'0' => config_get( 'bug_feedback_status' ),
),
FILTER_PROPERTY_HIGHLIGHT_CHANGED => $t_default_show_changed,
FILTER_PROPERTY_REPORTER_ID => array(
'0' => $t_current_user_id,
),
FILTER_PROPERTY_HANDLER_ID => array(
'0' => META_FILTER_ANY,
),
FILTER_PROPERTY_RESOLUTION => array(
'0' => META_FILTER_ANY,
),
FILTER_PROPERTY_BUILD => array(
'0' => META_FILTER_ANY,
),
FILTER_PROPERTY_VERSION => array(
'0' => META_FILTER_ANY,
),
FILTER_PROPERTY_HIDE_STATUS => array(
'0' => $t_hide_status_default,
),
FILTER_PROPERTY_MONITOR_USER_ID => array(
'0' => META_FILTER_ANY,
),
);
$t_url_link_parameters['feedback'] = FILTER_PROPERTY_REPORTER_ID . '=' . $t_current_user_id . '&' . FILTER_PROPERTY_STATUS . '=' . config_get( 'bug_feedback_status' ) . '&' . FILTER_PROPERTY_HIDE_STATUS . '=' . $t_hide_status_default;
$c_filter['verify'] = array(
FILTER_PROPERTY_CATEGORY_ID => array(
'0' => META_FILTER_ANY,
),
FILTER_PROPERTY_SEVERITY => array(
'0' => META_FILTER_ANY,
),
FILTER_PROPERTY_STATUS => array(
'0' => $t_bug_resolved_status_threshold,
),
FILTER_PROPERTY_HIGHLIGHT_CHANGED => $t_default_show_changed,
FILTER_PROPERTY_REPORTER_ID => array(
'0' => $t_current_user_id,
),
FILTER_PROPERTY_HANDLER_ID => array(
'0' => META_FILTER_ANY,
),
FILTER_PROPERTY_RESOLUTION => array(
'0' => META_FILTER_ANY,
),
FILTER_PROPERTY_BUILD => array(
'0' => META_FILTER_ANY,
),
FILTER_PROPERTY_VERSION => array(
'0' => META_FILTER_ANY,
),
FILTER_PROPERTY_HIDE_STATUS => array(
'0' => $t_hide_status_default,
),
FILTER_PROPERTY_MONITOR_USER_ID => array(
'0' => META_FILTER_ANY,
),
);
$t_url_link_parameters['verify'] = FILTER_PROPERTY_REPORTER_ID . '=' . $t_current_user_id . '&' . FILTER_PROPERTY_STATUS . '=' . $t_bug_resolved_status_threshold;
$c_filter['my_comments'] = array(
FILTER_PROPERTY_CATEGORY_ID => array(
'0' => META_FILTER_ANY,
),
FILTER_PROPERTY_SEVERITY => array(
'0' => META_FILTER_ANY,
),
FILTER_PROPERTY_STATUS => array(
'0' => META_FILTER_ANY,
),
FILTER_PROPERTY_HIGHLIGHT_CHANGED => $t_default_show_changed,
FILTER_PROPERTY_REPORTER_ID => array(
'0' => META_FILTER_ANY,
),
FILTER_PROPERTY_HANDLER_ID => array(
'0' => META_FILTER_ANY,
),
FILTER_PROPERTY_RESOLUTION => array(
'0' => META_FILTER_ANY,
),
FILTER_PROPERTY_BUILD => array(
'0' => META_FILTER_ANY,
),
FILTER_PROPERTY_VERSION => array(
'0' => META_FILTER_ANY,
),
FILTER_PROPERTY_HIDE_STATUS => array(
'0' => $t_hide_status_default,
),
FILTER_PROPERTY_MONITOR_USER_ID => array(
'0' => META_FILTER_ANY,
),
FILTER_PROPERTY_NOTE_USER_ID=> array(
'0' => META_FILTER_MYSELF,
),
);
$t_url_link_parameters['my_comments'] = FILTER_PROPERTY_NOTE_USER_ID. '=' . META_FILTER_MYSELF . '&' . FILTER_PROPERTY_HIDE_STATUS . '=' . $t_hide_status_default;
$t_rows = filter_get_bug_rows( $f_page_number, $t_per_page, $t_page_count, $t_bug_count, $c_filter[$t_box_title] );
# Improve performance by caching category data in one pass
if( helper_get_current_project() == 0 ) {
$t_categories = array();
foreach( $t_rows as $t_row ) {
$t_categories[] = $t_row->category_id;
}
category_cache_array_rows( array_unique( $t_categories ) );
}
bug_cache_columns_data( $t_rows , array( 'attachment_count' ) );
$t_filter = array_merge( $c_filter[$t_box_title], $t_filter );
$t_box_title_label = lang_get( 'my_view_title_' . $t_box_title );
if( $t_box_title == 'recent_mod' ) {
$t_box_title_label .= ' (' . $t_recent_days . ' ' . lang_get( 'days' ) . ')';
}
$t_collapse_block = is_collapsed( $t_box_title );
$t_block_css = $t_collapse_block ? 'collapsed' : '';
$t_block_icon = $t_collapse_block ? 'fa-chevron-down' : 'fa-chevron-up';
$t_bug_string = $t_bug_count == 1 ? 'bug' : 'bugs';
# -- ====================== BUG LIST ========================= --
?>
<div id="<?php echo $t_box_title ?>" class="widget-box widget-color-blue2 <?php echo $t_block_css ?>">
<div class="widget-header widget-header-small">
<h4 class="widget-title lighter">
<?php print_icon( 'fa-list-alt', 'ace-icon' ); ?>
<?php
#-- Box title
$t_box_url = html_entity_decode( config_get( 'bug_count_hyperlink_prefix' ) ).'&' . $t_url_link_parameters[$t_box_title];
print_link( $t_box_url, $t_box_title_label, false, 'white' );
# -- Viewing range info
if( count( $t_rows ) > 0 ) {
$v_start = $t_filter[FILTER_PROPERTY_ISSUES_PER_PAGE] * ( $f_page_number - 1 ) + 1;
$v_end = $v_start + count( $t_rows ) - 1;
} else {
$v_start = 0;
$v_end = 0;
}
echo '<span class="badge"> ' . " $v_start - $v_end / $t_bug_count " . ' </span>';
?>
</h4>
<div class="widget-toolbar">
<a data-action="collapse" href="#">
<?php print_icon( $t_block_icon, '1 ace-icon bigger-125' ); ?>
</a>
</div>
<div class="widget-toolbar no-border hidden-xs">
<div class="widget-menu">
<?php print_extra_small_button( $t_box_url, lang_get( 'view_bugs_link' ) ); ?>
</div>
</div>
</div>
<div class="widget-body">
<div class="widget-main no-padding">
<div class="table-responsive">
<table class="table table-bordered table-condensed table-striped table-hover">
<tbody>
<?php
# -- Loop over bug rows and create $v_* variables --
$t_count = count( $t_rows );
if( $t_count == 0 ) {
echo '<tr><td> </td></tr>';
}
for( $i = 0;$i < $t_count; $i++ ) {
$t_bug = $t_rows[$i];
$t_summary = string_display_line_links( $t_bug->summary );
$t_last_updated = date( config_get( 'normal_date_format' ), $t_bug->last_updated );
# Check for attachments
$t_attachment_count = 0;
# TODO: factor in the allow_view_own_attachments configuration option
# instead of just using a global check.
if( ( file_can_view_bug_attachments( $t_bug->id, null ) ) ) {
$t_attachment_count = file_bug_attachment_count( $t_bug->id );
}
# grab the project name
$project_name = project_get_field( $t_bug->project_id, 'name' );
if( VS_PRIVATE == $t_bug->view_state ) {
$t_bug_class = 'my-buglist-private';
} else {
$t_bug_class = '';
}
?>
<tr class="my-buglist-bug <?php echo $t_bug_class?>">
<?php
# -- Bug ID and details link + Pencil shortcut --?>
<td class="nowrap width-13 my-buglist-id">
<?php
print_bug_link( $t_bug->id, false );
echo '<br />';
# choose color based on status
$t_status_css = html_get_status_css_fg( $t_bug->status, auth_get_current_user_id(), $t_bug->project_id );
$t_status = string_attribute( get_enum_element( 'status', bug_get_field( $t_bug->id, 'status' ), $t_bug->project_id ) );
print_icon( 'fa-square', 'fa-status-box ' . $t_status_css, $t_status );
echo ' ';
$t_can_update = !bug_is_readonly( $t_bug->id ) &&
access_has_bug_level( config_get( 'update_bug_threshold', null, $t_current_user_id, $t_bug->project_id ), $t_bug->id );
if( $t_can_update ) {
echo '<a class="edit" href="' . string_get_bug_update_url( $t_bug->id ) . '">';
print_icon( 'fa-pencil', 'bigger-130 padding-2 grey', lang_get( 'edit' ) );
echo '</a>';
}
if( ON == config_get( 'show_priority_text' ) ) {
print_formatted_priority_string( $t_bug );
} else {
print_status_icon( $t_bug->priority );
}
if( $t_attachment_count > 0 ) {
$t_href = string_get_bug_view_url( $t_bug->id ) . '#attachments';
$t_href_title = sprintf( lang_get( 'view_attachments_for_issue' ), $t_attachment_count, $t_bug->id );
$t_alt_text = $t_attachment_count . lang_get( 'word_separator' ) . lang_get( 'attachments' );
echo '<a class="attachments" href="' . $t_href . '" title="' . $t_href_title . '"> ';
print_icon( 'fa-paperclip', 'fa-lg grey', $t_alt_text );
echo '</a>';
}
if( VS_PRIVATE == $t_bug->view_state ) {
echo ' ';
print_icon( 'fa-lock', 'fa-lg light-grey', lang_get( 'private' ) );
}
?>
</td>
<?php
# -- Summary --?>
<td>
<?php
if( ON == config_get( 'show_bug_project_links' ) && helper_get_current_project() != $t_bug->project_id ) {
echo '<span>[', string_display_line( project_get_name( $t_bug->project_id ) ), '] </span>';
}
$t_bug_url = string_get_bug_view_url( $t_bug->id );
echo '<span><a href="' . $t_bug_url . '">' . $t_summary . '</a></span><br />';
?>
<?php
# type project name if viewing 'all projects' or bug is in subproject
echo '<span class="small">', string_display_line( category_full_name( $t_bug->category_id, true, $t_bug->project_id ) ), '</span>';
echo '<span class="small"> - ';
if( $t_bug->last_updated > strtotime( '-' . $t_filter[FILTER_PROPERTY_HIGHLIGHT_CHANGED] . ' hours' ) ) {
echo '<strong>' . $t_last_updated . '</strong>';
} else {
echo $t_last_updated;
}
echo '</span>';
?>
</td>
</tr>
<?php
# -- end of Repeating bug row --
}
# -- ====================== end of BUG LIST ========================= --
?>
</tbody>
</table>
</div>
</div>
</div>
</div>
<?php
# Free the memory allocated for the rows in this box since it is not longer needed.
unset( $t_rows );
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。