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


PHP Util::renderComponentStatSection方法代码示例

本文整理汇总了PHP中Ubirimi\Util::renderComponentStatSection方法的典型用法代码示例。如果您正苦于以下问题:PHP Util::renderComponentStatSection方法的具体用法?PHP Util::renderComponentStatSection怎么用?PHP Util::renderComponentStatSection使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Ubirimi\Util的用法示例。


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

示例1:

        <table width="100%" cellpadding="8">
            <tr>
                <td valign="top">
                    <?php 
Util::renderComponentStatSection($statsPriority, $count, 'Unresolved by priority', 'priority', $projectId, null, $versionId, '/yongo/issue/search');
?>
                </td>
                <td valign="top">
                    <?php 
Util::renderComponentStatSection($statsType, $count, 'Unresolved by type', 'type', $projectId, null, $versionId, '/yongo/issue/search');
?>
                </td>
            </tr>
            <tr>
                <td valign="top">
                    <?php 
Util::renderComponentStatSection($statsStatus, $count, 'Status summary', 'status', $projectId, null, $versionId, '/yongo/issue/search');
?>
                </td>
                <td valign="top">
                    <?php 
Util::renderComponentStatSection($statsAssignee, $count, 'Unresolved by assignee', 'assignee', $projectId, null, $versionId, '/yongo/issue/search');
?>
                </td>
            </tr>
        </table>
    </div>
    <?php 
require_once __DIR__ . '/../_footer.php';
?>
</body>
开发者ID:spiasecki,项目名称:ubirimi,代码行数:31,代码来源:ViewVersionIssues.php

示例2:

                </td>
                <td valign="top">
                    <?php 
Util::renderComponentStatSection($statsType, $count, 'Unresolved by type', 'type', $projectId, null, null, '/helpdesk/customer-portal/tickets');
?>
                </td>
            </tr>
            <tr>
                <td valign="top" width="500px">
                    <?php 
Util::renderComponentStatSection($statsStatus, $count, 'Status overview', 'status', $projectId, null, null, '/helpdesk/customer-portal/tickets');
?>
                </td>
                <td valign="top">
                    <?php 
Util::renderComponentStatSection($statsAssignee, $count, 'Unresolved by assignee', 'assignee', $projectId, null, null, '/helpdesk/customer-portal/tickets');
?>
                </td>
            </tr>
            <tr>
                <td valign="top" width="50%">
                    <table width="100%" cellpadding="2">
                        <tr>
                            <td colspan="3" class="sectionDetail"><span class="sectionDetailSimple headerPageText">Unresolved by component</span></td>
                        </tr>
                        <?php 
if ($countUnresolvedWithoutComponent) {
    ?>
                            <tr>
                                <td width="180px">
                                    <?php 
开发者ID:spiasecki,项目名称:ubirimi,代码行数:31,代码来源:ViewProjectIssuesSummary.php


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