public function getCoApplicationsJoinsfGuardUser($criteria = null, $con = null)
 {
     include_once 'lib/model/om/BaseCoApplicationPeer.php';
     if ($criteria === null) {
         $criteria = new Criteria();
     } elseif ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
     }
     if ($this->collCoApplications === null) {
         if ($this->isNew()) {
             $this->collCoApplications = array();
         } else {
             $criteria->add(CoApplicationPeer::APPLICATION_ID, $this->getId());
             $this->collCoApplications = CoApplicationPeer::doSelectJoinsfGuardUser($criteria, $con);
         }
     } else {
         $criteria->add(CoApplicationPeer::APPLICATION_ID, $this->getId());
         if (!isset($this->lastCoApplicationCriteria) || !$this->lastCoApplicationCriteria->equals($criteria)) {
             $this->collCoApplications = CoApplicationPeer::doSelectJoinsfGuardUser($criteria, $con);
         }
     }
     $this->lastCoApplicationCriteria = $criteria;
     return $this->collCoApplications;
 }
 public static function doSelectJoinAllExceptCoField(Criteria $c, $con = null)
 {
     foreach (sfMixer::getCallables('BaseCoApplicationFieldEntryPeer:doSelectJoinAllExcept:doSelectJoinAllExcept') as $callable) {
         call_user_func($callable, 'BaseCoApplicationFieldEntryPeer', $c, $con);
     }
     $c = clone $c;
     if ($c->getDbName() == Propel::getDefaultDB()) {
         $c->setDbName(self::DATABASE_NAME);
     }
     CoApplicationFieldEntryPeer::addSelectColumns($c);
     $startcol2 = CoApplicationFieldEntryPeer::NUM_COLUMNS - CoApplicationFieldEntryPeer::NUM_LAZY_LOAD_COLUMNS + 1;
     CoApplicationPeer::addSelectColumns($c);
     $startcol3 = $startcol2 + CoApplicationPeer::NUM_COLUMNS;
     $c->addJoin(CoApplicationFieldEntryPeer::APPLICATION_ID, CoApplicationPeer::ID);
     $rs = BasePeer::doSelect($c, $con);
     $results = array();
     while ($rs->next()) {
         $omClass = CoApplicationFieldEntryPeer::getOMClass();
         $cls = Propel::import($omClass);
         $obj1 = new $cls();
         $obj1->hydrate($rs);
         $omClass = CoApplicationPeer::getOMClass();
         $cls = Propel::import($omClass);
         $obj2 = new $cls();
         $obj2->hydrate($rs, $startcol2);
         $newObject = true;
         for ($j = 0, $resCount = count($results); $j < $resCount; $j++) {
             $temp_obj1 = $results[$j];
             $temp_obj2 = $temp_obj1->getCoApplication();
             if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj2->addCoApplicationFieldEntry($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj2->initCoApplicationFieldEntrys();
             $obj2->addCoApplicationFieldEntry($obj1);
         }
         $results[] = $obj1;
     }
     return $results;
 }
Example #3
0
 public function fromArray($arr, $keyType = BasePeer::TYPE_PHPNAME)
 {
     $keys = CoApplicationPeer::getFieldNames($keyType);
     if (array_key_exists($keys[0], $arr)) {
         $this->setId($arr[$keys[0]]);
     }
     if (array_key_exists($keys[1], $arr)) {
         $this->setUuid($arr[$keys[1]]);
     }
     if (array_key_exists($keys[2], $arr)) {
         $this->setApplicationId($arr[$keys[2]]);
     }
     if (array_key_exists($keys[3], $arr)) {
         $this->setUserId($arr[$keys[3]]);
     }
     if (array_key_exists($keys[4], $arr)) {
         $this->setStatus($arr[$keys[4]]);
     }
     if (array_key_exists($keys[5], $arr)) {
         $this->setCreatedAt($arr[$keys[5]]);
     }
     if (array_key_exists($keys[6], $arr)) {
         $this->setDeletedAt($arr[$keys[6]]);
     }
     if (array_key_exists($keys[7], $arr)) {
         $this->setUpdatedAt($arr[$keys[7]]);
     }
 }
 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(CoApplicationPeer::ID, $pks, Criteria::IN);
         $objs = CoApplicationPeer::doSelect($criteria, $con);
     }
     return $objs;
 }
 public function getCoApplication($con = null)
 {
     if ($this->aCoApplication === null && $this->application_id !== null) {
         include_once 'lib/model/om/BaseCoApplicationPeer.php';
         $this->aCoApplication = CoApplicationPeer::retrieveByPK($this->application_id, $con);
     }
     return $this->aCoApplication;
 }