This repository has been archived by the owner on Nov 19, 2023. It is now read-only.
forked from mantisbt/mantisbt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bug_actiongroup_ext_page.php
102 lines (88 loc) · 3.09 KB
/
bug_actiongroup_ext_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
<?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 - [email protected]
* @copyright Copyright 2002 MantisBT Team - [email protected]
* @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' );
$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();