public static function doSelectJoinAllExceptTestApplicant(Criteria $c, $con = null)
 {
     $c = clone $c;
     if ($c->getDbName() == Propel::getDefaultDB()) {
         $c->setDbName(self::DATABASE_NAME);
     }
     TestApplicantAchievementPeer::addSelectColumns($c);
     $startcol2 = TestApplicantAchievementPeer::NUM_COLUMNS - TestApplicantAchievementPeer::NUM_LAZY_LOAD_COLUMNS + 1;
     TalentPeer::addSelectColumns($c);
     $startcol3 = $startcol2 + TalentPeer::NUM_COLUMNS;
     $c->addJoin(TestApplicantAchievementPeer::TALENT_ID, TalentPeer::ID);
     $rs = BasePeer::doSelect($c, $con);
     $results = array();
     while ($rs->next()) {
         $omClass = TestApplicantAchievementPeer::getOMClass();
         $cls = Propel::import($omClass);
         $obj1 = new $cls();
         $obj1->hydrate($rs);
         $omClass = TalentPeer::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->getTalent();
             if ($temp_obj2->getPrimaryKey() === $obj2->getPrimaryKey()) {
                 $newObject = false;
                 $temp_obj2->addTestApplicantAchievement($obj1);
                 break;
             }
         }
         if ($newObject) {
             $obj2->initTestApplicantAchievements();
             $obj2->addTestApplicantAchievement($obj1);
         }
         $results[] = $obj1;
     }
     return $results;
 }
 public function getTalent($con = null)
 {
     include_once 'lib/model/om/BaseTalentPeer.php';
     if ($this->aTalent === null && $this->talent_id !== null) {
         $this->aTalent = TalentPeer::retrieveByPK($this->talent_id, $con);
     }
     return $this->aTalent;
 }
Example #3
0
 public function executeDelete()
 {
     $talent = TalentPeer::retrieveByPk($this->getRequestParameter('id'));
     $this->forward404Unless($talent);
     $ref_error = 0;
     foreach ($talent->getRefCountMethods() as $ref) {
         $method = "count" . $ref['affix'];
         $count = $talent->{$method}();
         if ($count > 0) {
             ++$ref_error;
             $this->getRequest()->setError('talent/delete/' . sfInflector::camelize($ref['table']), $count);
         }
     }
     if ($ref_error > 0) {
         $this->getRequest()->setError('talent/delete', '_ERR_DELETE_ (' . $talent->toString() . ' - id:' . $talent->getId() . ')');
     } else {
         $talent->delete();
     }
     return $this->forward('talent', 'list');
 }
Example #4
0
 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(TalentPeer::ID, $pks, Criteria::IN);
         $objs = TalentPeer::doSelect($criteria, $con);
     }
     return $objs;
 }
Example #5
0
 public function fromArray($arr, $keyType = BasePeer::TYPE_PHPNAME)
 {
     $keys = TalentPeer::getFieldNames($keyType);
     if (array_key_exists($keys[0], $arr)) {
         $this->setId($arr[$keys[0]]);
     }
     if (array_key_exists($keys[1], $arr)) {
         $this->setName($arr[$keys[1]]);
     }
 }