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


PHP TaskPeer::doCount方法代碼示例

本文整理匯總了PHP中TaskPeer::doCount方法的典型用法代碼示例。如果您正苦於以下問題:PHP TaskPeer::doCount方法的具體用法?PHP TaskPeer::doCount怎麽用?PHP TaskPeer::doCount使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在TaskPeer的用法示例。


在下文中一共展示了TaskPeer::doCount方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: countTasks

 /**
  * Returns the number of related Task objects.
  *
  * @param      Criteria $criteria
  * @param      boolean $distinct
  * @param      PropelPDO $con
  * @return     int Count of related Task objects.
  * @throws     PropelException
  */
 public function countTasks(Criteria $criteria = null, $distinct = false, PropelPDO $con = null)
 {
     if ($criteria === null) {
         $criteria = new Criteria(StatusPeer::DATABASE_NAME);
     } else {
         $criteria = clone $criteria;
     }
     if ($distinct) {
         $criteria->setDistinct();
     }
     $count = null;
     if ($this->collTasks === null) {
         if ($this->isNew()) {
             $count = 0;
         } else {
             $criteria->add(TaskPeer::STATUS_ID, $this->id);
             $count = TaskPeer::doCount($criteria, false, $con);
         }
     } else {
         // criteria has no effect for a new object
         if (!$this->isNew()) {
             // the following code is to determine if a new query is
             // called for.  If the criteria is the same as the last
             // one, just return count of the collection.
             $criteria->add(TaskPeer::STATUS_ID, $this->id);
             if (!isset($this->lastTaskCriteria) || !$this->lastTaskCriteria->equals($criteria)) {
                 $count = TaskPeer::doCount($criteria, false, $con);
             } else {
                 $count = count($this->collTasks);
             }
         } else {
             $count = count($this->collTasks);
         }
     }
     return $count;
 }
開發者ID:snoopckuu,項目名稱:prmanagment,代碼行數:45,代碼來源:BaseStatus.php

示例2: countTasks

 public function countTasks($criteria = null, $distinct = false, $con = null)
 {
     include_once 'lib/model/om/BaseTaskPeer.php';
     if ($criteria === null) {
         $criteria = new Criteria();
     } elseif ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
     }
     $criteria->add(TaskPeer::PROJECT_ID, $this->getId());
     return TaskPeer::doCount($criteria, $distinct, $con);
 }
開發者ID:sgrove,項目名稱:cothinker,代碼行數:11,代碼來源:BaseProject.php

示例3: while

$oCriteria->addSelectColumn(AppDelegationPeer::TAS_UID);
$oCriteria->addSelectColumn(AppDelegationPeer::DEL_INIT_DATE);
$oCriteria->addSelectColumn(AppDelegationPeer::DEL_FINISH_DATE);
$oDataset = AppDelegationPeer::doSelectRS($oCriteria);
$oDataset->setFetchmode(ResultSet::FETCHMODE_ASSOC);
$oDataset->next();
while ($aRow = $oDataset->getRow()) {
    $oCriteria = new Criteria('workflow');
    $oCriteria->addSelectColumn(TaskPeer::TAS_UID);
    $oCriteria->add(TaskPeer::TAS_UID, $aRow['TAS_UID']);
    $oDataseti = TaskPeer::doSelectRS($oCriteria);
    $oDataseti->setFetchmode(ResultSet::FETCHMODE_ASSOC);
    $oDataseti->next();
    $b = 0;
    while ($aRows = $oDataseti->getRow()) {
        if (TaskPeer::doCount($oCriteria) == 1) {
            $b = 1;
        }
        $oDataseti->next();
    }
    if ($b == 1) {
        if ($aRow['DEL_INIT_DATE'] != null && $aRow['DEL_FINISH_DATE'] != null) {
            $fDuration = $oDates->calculateDuration($aRow['DEL_INIT_DATE'], $aRow['DEL_FINISH_DATE'], null, null, $aRow['TAS_UID']);
            $oCriteria = new Criteria('workflow');
            $sql = "UPDATE APP_DELEGATION SET DEL_DURATION='" . $fDuration . "' \n    \t\t\t\t\t\t\t\tWHERE APP_UID='" . $aRow['APP_UID'] . "' AND DEL_INDEX='" . $aRow['DEL_INDEX'] . "'";
            $con = Propel::getConnection("workflow");
            $stmt = $con->prepareStatement($sql);
            $rs = $stmt->executeQuery();
        } else {
            $oCriteria = new Criteria('workflow');
            $sql = "UPDATE APP_DELEGATION SET DEL_DURATION=0 \n    \t\t\t\t\t\t\t\tWHERE APP_UID='" . $aRow['APP_UID'] . "' AND DEL_INDEX='" . $aRow['DEL_INDEX'] . "'";
開發者ID:nshong,項目名稱:processmaker,代碼行數:31,代碼來源:reports_Duration.php


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