Пример #1
0
 private function setBoundDefaults()
 {
     $this->bound->setBouElementType(lcfirst(str_replace(__NAMESPACE__, '', __CLASS__)));
     $this->bound->setPrjUid($this->getPrjUid());
     $this->bound->setElementUid($this->getArtUid());
     $process = BpmnProcessPeer::retrieveByPK($this->getProUid());
     if (is_object($process)) {
         $this->bound->setDiaUid($process->getDiaUid());
         if ($this->bound->getBouElement()) {
             $lane = BpmnLanePeer::retrieveByPK($this->bound->getBouElement());
             $laneset = BpmnLanesetPeer::retrieveByPK($this->bound->getBouElement());
             if (is_object($lane)) {
                 $this->bound->setBouContainer('bpmnLane');
             } elseif (is_object($laneset)) {
                 $this->bound->setBouContainer('bpmnPool');
             }
         } else {
             $this->bound->setBouContainer('bpmnDiagram');
             $this->bound->setBouElement($process->getDiaUid());
         }
     }
 }
Пример #2
0
 /**
  * If this collection has already been initialized with
  * an identical criteria, it returns the collection.
  * Otherwise if this BpmnProject is new, it will return
  * an empty collection; or if this BpmnProject has previously
  * been saved, it will retrieve related BpmnLanesets from storage.
  *
  * This method is protected by default in order to keep the public
  * api reasonable.  You can provide public methods for those you
  * actually need in BpmnProject.
  */
 public function getBpmnLanesetsJoinBpmnProcess($criteria = null, $con = null)
 {
     // include the Peer class
     include_once 'classes/model/om/BaseBpmnLanesetPeer.php';
     if ($criteria === null) {
         $criteria = new Criteria();
     } elseif ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
     }
     if ($this->collBpmnLanesets === null) {
         if ($this->isNew()) {
             $this->collBpmnLanesets = array();
         } else {
             $criteria->add(BpmnLanesetPeer::PRJ_UID, $this->getPrjUid());
             $this->collBpmnLanesets = BpmnLanesetPeer::doSelectJoinBpmnProcess($criteria, $con);
         }
     } else {
         // 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(BpmnLanesetPeer::PRJ_UID, $this->getPrjUid());
         if (!isset($this->lastBpmnLanesetCriteria) || !$this->lastBpmnLanesetCriteria->equals($criteria)) {
             $this->collBpmnLanesets = BpmnLanesetPeer::doSelectJoinBpmnProcess($criteria, $con);
         }
     }
     $this->lastBpmnLanesetCriteria = $criteria;
     return $this->collBpmnLanesets;
 }
Пример #3
0
 public static function exists($actUid)
 {
     $c = new Criteria("workflow");
     $c->add(BpmnLanesetPeer::LNS_UID, $actUid);
     return BpmnLanesetPeer::doCount($c) > 0 ? true : false;
 }
Пример #4
0
 /**
  * Populates the object using an array.
  *
  * This is particularly useful when populating an object from one of the
  * request arrays (e.g. $_POST).  This method goes through the column
  * names, checking to see whether a matching key exists in populated
  * array. If so the setByName() method is called for that column.
  *
  * You can specify the key type of the array by additionally passing one
  * of the class type constants TYPE_PHPNAME, TYPE_COLNAME, TYPE_FIELDNAME,
  * TYPE_NUM. The default key type is the column's phpname (e.g. 'authorId')
  *
  * @param      array  $arr     An array to populate the object from.
  * @param      string $keyType The type of keys the array uses.
  * @return     void
  */
 public function fromArray($arr, $keyType = BasePeer::TYPE_PHPNAME)
 {
     $keys = BpmnLanesetPeer::getFieldNames($keyType);
     if (array_key_exists($keys[0], $arr)) {
         $this->setLnsUid($arr[$keys[0]]);
     }
     if (array_key_exists($keys[1], $arr)) {
         $this->setPrjUid($arr[$keys[1]]);
     }
     if (array_key_exists($keys[2], $arr)) {
         $this->setProUid($arr[$keys[2]]);
     }
     if (array_key_exists($keys[3], $arr)) {
         $this->setLnsName($arr[$keys[3]]);
     }
     if (array_key_exists($keys[4], $arr)) {
         $this->setLnsParentLane($arr[$keys[4]]);
     }
     if (array_key_exists($keys[5], $arr)) {
         $this->setLnsIsHorizontal($arr[$keys[5]]);
     }
     if (array_key_exists($keys[6], $arr)) {
         $this->setLnsState($arr[$keys[6]]);
     }
 }
 /**
  * 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(BpmnLanesetPeer::LNS_UID, $pks, Criteria::IN);
         $objs = BpmnLanesetPeer::doSelect($criteria, $con);
     }
     return $objs;
 }
Пример #6
0
    public function updateLaneset($lnsUid, $data)
    {
        try {
            self::log("Update Laneset: $lnsUid", "With data: ", $data);

            $laneset = LanesetPeer::retrieveByPk($lnsUid);

            $laneset->fromArray($data);
            $laneset->save();

            self::log("Update Laneset Success!");
        } catch (\Exception $e) {
            self::log("Exception: ", $e->getMessage(), "Trace: ", $e->getTraceAsString());
            throw $e;
        }
    }