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


PHP TaskPeer::doSelect方法代碼示例

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


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

示例1: retrieveByPKs

 /**
  * Retrieve multiple objects by pkey.
  *
  * @param      array $pks List of primary keys
  * @param      Connection $con the connection to use
  * @throws     PropelException Any exceptions caught during processing will be
  *       rethrown wrapped into a PropelException.
  */
 public static function retrieveByPKs($pks, $con = null)
 {
     if ($con === null) {
         $con = Propel::getConnection(self::DATABASE_NAME);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria();
         $criteria->add(TaskPeer::TAS_UID, $pks, Criteria::IN);
         $objs = TaskPeer::doSelect($criteria, $con);
     }
     return $objs;
 }
開發者ID:bqevin,項目名稱:processmaker,代碼行數:23,代碼來源:BaseTaskPeer.php

示例2: getTasks

 public function getTasks($criteria = null, $con = null)
 {
     include_once 'lib/model/om/BaseTaskPeer.php';
     if ($criteria === null) {
         $criteria = new Criteria();
     } elseif ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
     }
     if ($this->collTasks === null) {
         if ($this->isNew()) {
             $this->collTasks = array();
         } else {
             $criteria->add(TaskPeer::PROJECT_ID, $this->getId());
             TaskPeer::addSelectColumns($criteria);
             $this->collTasks = TaskPeer::doSelect($criteria, $con);
         }
     } else {
         if (!$this->isNew()) {
             $criteria->add(TaskPeer::PROJECT_ID, $this->getId());
             TaskPeer::addSelectColumns($criteria);
             if (!isset($this->lastTaskCriteria) || !$this->lastTaskCriteria->equals($criteria)) {
                 $this->collTasks = TaskPeer::doSelect($criteria, $con);
             }
         }
     }
     $this->lastTaskCriteria = $criteria;
     return $this->collTasks;
 }
開發者ID:sgrove,項目名稱:cothinker,代碼行數:28,代碼來源:BaseProject.php

示例3: executeList

 public function executeList()
 {
     $this->tasks = TaskPeer::doSelect(new Criteria());
 }
開發者ID:sgrove,項目名稱:cothinker,代碼行數:4,代碼來源:actions.class.php

示例4: getTasks

 /**
  * Gets an array of Task objects which contain a foreign key that references this object.
  *
  * If this collection has already been initialized with an identical Criteria, it returns the collection.
  * Otherwise if this Status has previously been saved, it will retrieve
  * related Tasks from storage. If this Status is new, it will return
  * an empty collection or the current collection, the criteria is ignored on a new object.
  *
  * @param      PropelPDO $con
  * @param      Criteria $criteria
  * @return     array Task[]
  * @throws     PropelException
  */
 public function getTasks($criteria = null, PropelPDO $con = null)
 {
     if ($criteria === null) {
         $criteria = new Criteria(StatusPeer::DATABASE_NAME);
     } elseif ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
     }
     if ($this->collTasks === null) {
         if ($this->isNew()) {
             $this->collTasks = array();
         } else {
             $criteria->add(TaskPeer::STATUS_ID, $this->id);
             TaskPeer::addSelectColumns($criteria);
             $this->collTasks = TaskPeer::doSelect($criteria, $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 the collection.
             $criteria->add(TaskPeer::STATUS_ID, $this->id);
             TaskPeer::addSelectColumns($criteria);
             if (!isset($this->lastTaskCriteria) || !$this->lastTaskCriteria->equals($criteria)) {
                 $this->collTasks = TaskPeer::doSelect($criteria, $con);
             }
         }
     }
     $this->lastTaskCriteria = $criteria;
     return $this->collTasks;
 }
開發者ID:snoopckuu,項目名稱:prmanagment,代碼行數:44,代碼來源:BaseStatus.php

示例5: executeIndex

 public function executeIndex()
 {
     $c = new Criteria();
     $c->add(TaskPeer::ESTIMATE, 0);
     $this->estimate = TaskPeer::doSelect($c);
 }
開發者ID:snoopckuu,項目名稱:prmanagment,代碼行數:6,代碼來源:actions.class.php


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