4 Star 9 Fork 5

Gitee 极速下载/mantisbt

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/mantisbt/mantisbt
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
bug_actiongroup_add_note_inc.php 4.23 KB
一键复制 编辑 原始数据 按行查看 历史
<?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/>.
/**
* Bugnote action group add include file
*
* @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 access_api.php
* @uses bug_api.php
* @uses config_api.php
* @uses constant_inc.php
* @uses error_api.php
* @uses gpc_api.php
* @uses helper_api.php
* @uses lang_api.php
* @uses print_api.php
* @uses utility_api.php
*/
if( !defined( 'BUG_ACTIONGROUP_INC_ALLOW' ) ) {
return;
}
# This variable is defined in parent script
global $t_event_params;
$t_event_params['has_bugnote'] = true;
require_api( 'access_api.php' );
require_api( 'bug_api.php' );
require_api( 'config_api.php' );
require_api( 'constant_inc.php' );
require_api( 'error_api.php' );
require_api( 'gpc_api.php' );
require_api( 'helper_api.php' );
require_api( 'lang_api.php' );
require_api( 'print_api.php' );
require_api( 'utility_api.php' );
/**
* Prints the title for the custom action page.
* @return void
*/
function action_add_note_print_title() {
echo lang_get( 'add_bugnote_title' );
}
/**
* 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_add_note_print_fields() {
?>
<tr>
<th class="category">
<?php echo lang_get( 'add_bugnote_title' ); ?>
</th>
<td>
<textarea class="form-control" name="bugnote_text" id="bugnote_text" cols="80" rows="10"></textarea>
</td>
</tr>
<!-- View Status -->
<tr>
<th class="category">
<?php echo lang_get( 'view_status' ) ?>
</th>
<td>
<?php
$t_default_state = config_get( 'default_bugnote_view_status' );
if( access_has_project_level( config_get( 'set_view_status_threshold' ) ) ) { ?>
<select name="view_state" class="input-sm">
<?php print_enum_string_option_list( 'view_state', $t_default_state ) ?>
</select>
<?php
} else {
echo get_enum_element( 'view_state', $t_default_state );
?>
<input type="hidden" name="view_state" value="<?php echo $t_default_state; ?>" />';
<?php
}
?>
</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_add_note_validate( $p_bug_id ) {
$f_bugnote_text = gpc_get_string( 'bugnote_text' );
if( is_blank( $f_bugnote_text ) ) {
error_parameters( lang_get( 'bugnote' ) );
trigger_error( ERROR_EMPTY_FIELD, ERROR );
}
$t_add_bugnote_threshold = config_get( 'add_bugnote_threshold' );
$t_bug_id = $p_bug_id;
if( bug_is_readonly( $t_bug_id ) ) {
return lang_get( 'actiongroup_error_issue_is_readonly' );
}
if( !access_has_bug_level( $t_add_bugnote_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_add_note_process( $p_bug_id ) {
$f_bugnote_text = gpc_get_string( 'bugnote_text' );
$f_view_state = gpc_get_int( 'view_state' );
$t_bugnote_id = bugnote_add( $p_bug_id, $f_bugnote_text, '0:00', $f_view_state != VS_PUBLIC );
bugnote_process_mentions( $p_bug_id, $t_bugnote_id, $f_bugnote_text );
return null;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/mirrors/mantisbt.git
git@gitee.com:mirrors/mantisbt.git
mirrors
mantisbt
mantisbt
master

搜索帮助