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


PHP task::isDone方法代码示例

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


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

示例1: isParentDone

 /**
  * checks whether an existing parent task is set to done
  * @return true if parent task is done, otherwise false
  */
 function isParentDone()
 {
     if (!isset($this->mountId) || $this->mountId == 0) {
         return true;
     }
     $task = new task($this->mountId);
     if ($task->isDone()) {
         return true;
     }
     return false;
 }
开发者ID:pmtool,项目名称:pmtool,代码行数:15,代码来源:task.inc.php

示例2:

      </table>
    </td>
  </tr>
  </form>
</table>

<?php 
#######################################################################
## show form to post jobs
if ($status == 0) {
    $jobInst->clear();
}
?>

<?php 
if (!$taskInst->isDone() && $loginInst->id == $taskInst->userId) {
    ?>
  <br>
  <a name="jobform"></a>
  <form method="post" name="form1">
  <input type="hidden" name="action" value="save">
  <input type="hidden" name="taskid" value="<?php 
    echo $taskInst->id;
    ?>
">
  <input type="hidden" name="id" value="<?php 
    echo $jobInst->id;
    ?>
">
  <table border="0" cellpadding="2" cellspacing="1" width="96%" bgcolor="#ffffff">
    <tr>
开发者ID:pmtool,项目名称:pmtool,代码行数:31,代码来源:taskdetails.php

示例3: task

    <th>percentage</th>
    <th>&nbsp;</th>
  </tr>

<?php 
$taskInst = new task();
$order = "finish";
if (tool::securePost('order')) {
    $order = tool::securePost('order');
}
$list = $taskInst->getList($order);
if ($order == "plannedhours") {
    $listByHour = array();
    while ($element = current($list)) {
        $taskInst->activate($element);
        if (!$taskInst->isDone() && $taskInst->statusId != TASK_STATUS_WAITING && $taskInst->plannedHours && $taskInst->plannedHours != "0") {
            $diff = $taskInst->plannedHours * 60 * 60 - $taskInst->getSummary();
            $listByHour[$diff] = $taskInst->id;
        }
        next($list);
    }
    ksort($listByHour);
    while (list($diff, $id) = each($listByHour)) {
        $taskInst->activate($id);
        ?>
<tr class="light" onmouseover="this.style.backgroundColor='#fafafa'" onmouseout="this.style.backgroundColor=''"><?php 
        $projectInst = new project($taskInst->projectId);
        echo "<td><nobr><a href=\"javascript:openwindow('" . $toolInst->encodeUrl("index.php?content=projectdetails.php&view=details&projectid=" . $projectInst->id) . "',width='500',height='500')\" title=\"show details for this project\">" . $projectInst->name . "</a></nobr></td>\n";
        if ($loginInst->hasAccess("task.viewOther")) {
            $userInst = new user($taskInst->userId);
            echo "<td><nobr>" . $userInst->username . "</nobr></td>\n";
开发者ID:pmtool,项目名称:pmtool,代码行数:31,代码来源:index.php


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