forked from mantisbt/mantisbt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bug_actiongroup_update_product_build_inc.php
101 lines (89 loc) · 2.94 KB
/
bug_actiongroup_update_product_build_inc.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
<?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 include file
*
* @package MantisBT
* @copyright Copyright 2000 - 2002 Kenzaburo Ito - [email protected]
* @copyright Copyright 2002 MantisBT Team - [email protected]
* @link http://www.mantisbt.org
*
* @uses access_api.php
* @uses bug_api.php
* @uses config_api.php
* @uses gpc_api.php
* @uses lang_api.php
*/
if( !defined( 'BUG_ACTIONGROUP_INC_ALLOW' ) ) {
return;
}
require_api( 'access_api.php' );
require_api( 'bug_api.php' );
require_api( 'config_api.php' );
require_api( 'gpc_api.php' );
require_api( 'lang_api.php' );
/**
* Prints the title for the custom action page.
* @return void
*/
function action_update_product_build_print_title() {
echo lang_get( 'actiongroup_menu_update_product_build' );
}
/**
* Prints the field within the custom action form. This has an entry for
* every field the user need to supply + the submit button. The fields are
* added as rows in a table that is already created by the calling code.
* A row has two columns.
* @return void
*/
function action_update_product_build_print_fields() {
?>
<tr>
<th class="category">
<?php echo lang_get( 'product_build' ); ?>
</th>
<td>
<input type="text" name="build" class="input-sm" size="32" maxlength="32" />
</td>
</tr>
<?php
}
/**
* Validates the action on the specified bug id.
*
* @param integer $p_bug_id A bug identifier.
* @return string|null On failure: the reason why the action could not be validated. On success: null.
*/
function action_update_product_build_validate( $p_bug_id ) {
$t_bug_id = (int)$p_bug_id;
if( bug_is_readonly( $t_bug_id ) ) {
return lang_get( 'actiongroup_error_issue_is_readonly' );
}
if( !access_has_bug_level( config_get( 'update_bug_threshold' ), $t_bug_id ) ) {
return lang_get( 'access_denied' );
}
return null;
}
/**
* Executes the custom action on the specified bug id.
*
* @param integer $p_bug_id The bug id to execute the custom action on.
* @return null Previous validation ensures that this function doesn't fail. Therefore we can always return null to indicate no errors occurred.
*/
function action_update_product_build_process( $p_bug_id ) {
$t_build = gpc_get_string( 'build' );
bug_set_field( $p_bug_id, 'build', $t_build );
return null;
}