当前位置: 首页>>代码示例>>PHP>>正文


PHP enum_bug_group函数代码示例

本文整理汇总了PHP中enum_bug_group函数的典型用法代码示例。如果您正苦于以下问题:PHP enum_bug_group函数的具体用法?PHP enum_bug_group怎么用?PHP enum_bug_group使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了enum_bug_group函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: access_ensure_project_level

 * @link http://www.mantisbt.org
 */
/**
 * MantisBT Core API's
 */
require_once 'core.php';
require_once 'graph_api.php';
access_ensure_project_level(config_get('view_summary_threshold'));
html_page_top();
print_summary_menu('summary_page.php');
echo '<br />';
print_summary_submenu();
$t_width = plugin_config_get('window_width');
$t_graph_width = (int) (($t_width - 50) * 0.6);
# gather the data for the graphs
$t_metrics = enum_bug_group(lang_get('severity_enum_string'), 'severity');
$t_token = token_set(TOKEN_GRAPH, serialize($t_metrics));
?>

<br />
<table class="width100" cellspacing="1">
<tr>
	<td class="form-title">
		<?php 
echo plugin_lang_get('graph_imp_severity_title');
?>
	</td>
</tr>
<tr valign="top">
	<td>
		<center><img src="<?php 
开发者ID:nourchene-benslimane,项目名称:mantisV0,代码行数:31,代码来源:summary_graph_imp_severity.php

示例2: config_get

	require_once( 'core.php' );

	require_once( 'graph_api.php' );

	access_ensure_project_level( config_get( 'view_summary_threshold' ) );

	html_page_top();

	print_summary_menu( 'summary_page.php' );
	echo '<br />';
	print_summary_submenu();
	$t_width = plugin_config_get( 'window_width' );
	$t_graph_width = (int) ( ( $t_width - 50 ) * 0.6 );

	# gather the data for the graphs
	$t_metrics = enum_bug_group( lang_get( 'resolution_enum_string' ), 'resolution');
	$t_token = token_set( TOKEN_GRAPH, serialize( $t_metrics ) );

?>

<br />
<table class="width100" cellspacing="1">
<tr>
	<td class="form-title">
		<?php echo plugin_lang_get( 'graph_imp_resolution_title' ) ?>
	</td>
</tr>
<tr>
	<td class="center">
		<img src="<?php echo plugin_page( 'summary_graph_byresolution.php')?>&amp;width=<?php echo $t_graph_width?>" alt="" />
	</td>
开发者ID:rombert,项目名称:mantisbt,代码行数:31,代码来源:summary_graph_imp_resolution.php


注:本文中的enum_bug_group函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。