當前位置: 首頁>>代碼示例>>PHP>>正文


PHP print_user_with_subject函數代碼示例

本文整理匯總了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');
開發者ID:amjadtbssm,項目名稱:website,代碼行數:29,代碼來源:bug_view_advanced_page.php

示例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++;
開發者ID:amjadtbssm,項目名稱:website,代碼行數:31,代碼來源:print_all_bug_page_excel.php


注:本文中的print_user_with_subject函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。