本文整理汇总了PHP中print_user_with_subject函数的典型用法代码示例。如果您正苦于以下问题:PHP print_user_with_subject函数的具体用法?PHP print_user_with_subject怎么用?PHP print_user_with_subject使用的例子?那么, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了print_user_with_subject函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: helper_alternate_class
<!-- Handler -->
<tr <?php
echo helper_alternate_class();
?>
>
<td class="category">
<?php
echo lang_get('assigned_to');
?>
</td>
<td colspan="5">
<?php
if (access_has_bug_level(config_get('view_handler_threshold'), $f_bug_id)) {
print_user_with_subject($t_bug->handler_id, $f_bug_id);
}
?>
</td>
</tr>
<tr <?php
echo helper_alternate_class();
?>
>
<!-- Priority -->
<td class="category">
<?php
echo lang_get('priority');
示例2: print_user_with_subject
?>
<td class=xl2216681 nowrap style='border-top:none;border-left:none'>
<?php
print_user_with_subject($v_reporter_id, $v_id);
echo "</td>";
}
$name_index++;
?>
<?php
if ($name_index < $field_name_count && (!isset($t_prefs[$name_index]) || 1 == $t_prefs[$name_index])) {
?>
<td class=xl2216681 nowrap style='border-top:none;border-left:none'>
<?php
if (access_has_bug_level(config_get('view_handler_threshold'), $v_id)) {
print_user_with_subject($v_handler_id, $v_id);
}
echo "</td>";
}
$name_index++;
?>
<?php
if ($name_index < $field_name_count && (!isset($t_prefs[$name_index]) || 1 == $t_prefs[$name_index])) {
?>
<td class=xl2216681 nowrap style='border-top:none;border-left:none'>
<?php
echo get_enum_element('priority', $v_priority);
echo "</td>";
}
$name_index++;