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


PHP Util::renderIssueTables方法代码示例

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


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

示例1: array

"><?php 
        echo $projectIdsNames[$i][1];
        ?>
</option>
                <?php 
    }
    ?>
            </select>
        </div>
        <?php 
    if ($issuesUnresolvedOthers) {
        ?>
            <?php 
        $renderParameters = array('issues' => $issuesUnresolvedOthers, 'render_checkbox' => false, 'show_header' => true);
        $renderColumns = array('code', 'summary', 'priority', 'assignee');
        $issuesRendered = Util::renderIssueTables($renderParameters, $renderColumns, $clientSettings);
        ?>
            <?php 
        if (!$issuesRendered) {
            ?>
                <div>There are no unresolved issues assigned to others than you.</div>
            <?php 
        }
        ?>
        <?php 
    } else {
        ?>

            <div style="padding: 8px;">There are no unresolved issues assigned to others than you.</div>
        <?php 
    }
开发者ID:spiasecki,项目名称:ubirimi,代码行数:31,代码来源:ViewUnresolvedOthers.php

示例2: array

        $renderCheckboxDisabled = false;
        if ($sprint['started_flag']) {
            $renderCheckboxDisabled = true;
        }
        $params = array('issues' => $issues, 'render_checkbox' => true, 'checkbox_disabled' => $renderCheckboxDisabled, 'show_header' => false);
        Util::renderIssueTables($params, $columns, $clientSettings);
        echo '<div style="padding-bottom: 4px"></div>';
    } else {
        echo '<div class="messageGreen">There are no issues for this sprint.</div>';
    }
}
$issues = UbirimiContainer::get()['repository']->get(Board::class)->getBacklogIssues($clientId, $board, $onlyMyIssuesFlag, $loggedInUserId, $searchQuery, $completeStatuses);
$params = array('issues' => $issues, 'render_checkbox' => true, 'show_header' => false, 'in_backlog' => true);
echo '<div class="headerPageText" style="padding-bottom: 4px; padding-top: 4px">Backlog</div>';
if (isset($issues) && $issues->num_rows > 0) {
    Util::renderIssueTables($params, $columns, $clientSettings);
} else {
    echo '<div class="messageGreen">There are no issues for the backlog.</div>';
}
?>
                    </div>
                </td>
                <td width="30%" valign="top">
                    <div id="agileIssueContent" class="pageContentNoPadding" style="border-radius: 0px; overflow: auto">
                        <div class="headerPageText">Plan Mode</div>
                        <div>Plan mode is where you scrub your backlog: review, estimate, and prioritise your stories and bugs, then create and plan sprints (iterations of work).</div>
                    </div>
                </td>
            </tr>
        </table>
    </div>
开发者ID:spiasecki,项目名称:ubirimi,代码行数:31,代码来源:Plan.php


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