代码拉取完成,页面将自动刷新
<?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/>.
/**
* Bug action group additional actions
*
* @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 authentication_api.php
* @uses bug_group_action_api.php
* @uses form_api.php
* @uses gpc_api.php
* @uses print_api.php
* @uses string_api.php
* @uses utility_api.php
*/
if( !defined( 'BUG_ACTIONGROUP_INC_ALLOW' ) ) {
return;
}
# This variable is defined in parent script
global $t_event_params;
require_api( 'authentication_api.php' );
require_api( 'bug_group_action_api.php' );
require_api( 'form_api.php' );
require_api( 'gpc_api.php' );
require_api( 'print_api.php' );
require_api( 'string_api.php' );
require_api( 'utility_api.php' );
require_css( 'status_config.php');
$t_external_action = mb_strtolower( mb_substr( $f_action, mb_strlen( $t_external_action_prefix ) ) );
$t_form_fields_page = 'bug_actiongroup_' . $t_external_action . '_inc.php';
$t_form_name = 'bug_actiongroup_' . $t_external_action;
bug_group_action_init( $t_external_action );
bug_group_action_print_top();
?>
<div class="col-md-12 col-xs-12">
<div id="action-group-div" class="form-container" >
<form method="post" action="bug_actiongroup_ext.php">
<?php echo form_security_field( $t_form_name ); ?>
<input type="hidden" name="action" value="<?php echo string_attribute( $t_external_action ) ?>" />
<div class="widget-box widget-color-blue2">
<div class="widget-header widget-header-small">
<h4 class="widget-title lighter">
<?php bug_group_action_print_title( $t_external_action ); ?>
</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">
<tbody>
<?php
bug_group_action_print_hidden_fields( $f_bug_arr );
bug_group_action_print_action_fields( $t_external_action );
# signal plugin event for additional fields
event_signal( 'EVENT_BUG_ACTIONGROUP_FORM', array( $t_event_params ) );
?>
<tr class="spacer"></tr>
<?php bug_group_action_print_bug_list( $f_bug_arr ); ?>
<tr class="spacer"></tr>
</tbody>
</table>
</div>
</div>
<div class="widget-toolbox padding-8 clearfix">
<input type="submit" class="btn btn-primary btn-white btn-round" value="<?php bug_group_action_print_title( $t_external_action ); ?>" />
</div>
</div>
</div>
</form>
</div>
</div>
<?php
bug_group_action_print_bottom();
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。