Exemple #1
0
 public static function findAllBy($field, $value)
 {
     $c = new Criteria('workflow');
     $c->add($field, $value, Criteria::EQUAL);
     return BpmnLanePeer::doSelect($c);
 }
 /**
  * If this collection has already been initialized with
  * an identical criteria, it returns the collection.
  * Otherwise if this BpmnProject has previously
  * been saved, it will retrieve related BpmnLanes from storage.
  * If this BpmnProject is new, it will return
  * an empty collection or the current collection, the criteria
  * is ignored on a new object.
  *
  * @param      Connection $con
  * @param      Criteria $criteria
  * @throws     PropelException
  */
 public function getBpmnLanes($criteria = null, $con = null)
 {
     // include the Peer class
     include_once 'classes/model/om/BaseBpmnLanePeer.php';
     if ($criteria === null) {
         $criteria = new Criteria();
     } elseif ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
     }
     if ($this->collBpmnLanes === null) {
         if ($this->isNew()) {
             $this->collBpmnLanes = array();
         } else {
             $criteria->add(BpmnLanePeer::PRJ_UID, $this->getPrjUid());
             BpmnLanePeer::addSelectColumns($criteria);
             $this->collBpmnLanes = BpmnLanePeer::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(BpmnLanePeer::PRJ_UID, $this->getPrjUid());
             BpmnLanePeer::addSelectColumns($criteria);
             if (!isset($this->lastBpmnLaneCriteria) || !$this->lastBpmnLaneCriteria->equals($criteria)) {
                 $this->collBpmnLanes = BpmnLanePeer::doSelect($criteria, $con);
             }
         }
     }
     $this->lastBpmnLaneCriteria = $criteria;
     return $this->collBpmnLanes;
 }
 /**
  * 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(BpmnLanePeer::LAN_UID, $pks, Criteria::IN);
         $objs = BpmnLanePeer::doSelect($criteria, $con);
     }
     return $objs;
 }