/** * Selects a collection of AbsenceEleveTraitement objects pre-filled with all related objects except ModifieParUtilisateur. * * @param Criteria $criteria * @param PropelPDO $con * @param String $join_behavior the type of joins to use, defaults to Criteria::LEFT_JOIN * @return array Array of AbsenceEleveTraitement objects. * @throws PropelException Any exceptions caught during processing will be * rethrown wrapped into a PropelException. */ public static function doSelectJoinAllExceptModifieParUtilisateur(Criteria $criteria, $con = null, $join_behavior = Criteria::LEFT_JOIN) { $criteria = clone $criteria; // Set the correct dbName if it has not been overridden // $criteria->getDbName() will return the same object if not set to another value // so == check is okay and faster if ($criteria->getDbName() == Propel::getDefaultDB()) { $criteria->setDbName(self::DATABASE_NAME); } AbsenceEleveTraitementPeer::addSelectColumns($criteria); $startcol2 = AbsenceEleveTraitementPeer::NUM_HYDRATE_COLUMNS; AbsenceEleveTypePeer::addSelectColumns($criteria); $startcol3 = $startcol2 + AbsenceEleveTypePeer::NUM_HYDRATE_COLUMNS; AbsenceEleveMotifPeer::addSelectColumns($criteria); $startcol4 = $startcol3 + AbsenceEleveMotifPeer::NUM_HYDRATE_COLUMNS; AbsenceEleveJustificationPeer::addSelectColumns($criteria); $startcol5 = $startcol4 + AbsenceEleveJustificationPeer::NUM_HYDRATE_COLUMNS; $criteria->addJoin(AbsenceEleveTraitementPeer::A_TYPE_ID, AbsenceEleveTypePeer::ID, $join_behavior); $criteria->addJoin(AbsenceEleveTraitementPeer::A_MOTIF_ID, AbsenceEleveMotifPeer::ID, $join_behavior); $criteria->addJoin(AbsenceEleveTraitementPeer::A_JUSTIFICATION_ID, AbsenceEleveJustificationPeer::ID, $join_behavior); // soft_delete behavior if (AbsenceEleveTraitementQuery::isSoftDeleteEnabled()) { $criteria->add(AbsenceEleveTraitementPeer::DELETED_AT, null, Criteria::ISNULL); } else { AbsenceEleveTraitementPeer::enableSoftDelete(); } $stmt = BasePeer::doSelect($criteria, $con); $results = array(); while ($row = $stmt->fetch(PDO::FETCH_NUM)) { $key1 = AbsenceEleveTraitementPeer::getPrimaryKeyHashFromRow($row, 0); if (null !== ($obj1 = AbsenceEleveTraitementPeer::getInstanceFromPool($key1))) { // We no longer rehydrate the object, since this can cause data loss. // See http://www.propelorm.org/ticket/509 // $obj1->hydrate($row, 0, true); // rehydrate } else { $cls = AbsenceEleveTraitementPeer::getOMClass(false); $obj1 = new $cls(); $obj1->hydrate($row); AbsenceEleveTraitementPeer::addInstanceToPool($obj1, $key1); } // if obj1 already loaded // Add objects for joined AbsenceEleveType rows $key2 = AbsenceEleveTypePeer::getPrimaryKeyHashFromRow($row, $startcol2); if ($key2 !== null) { $obj2 = AbsenceEleveTypePeer::getInstanceFromPool($key2); if (!$obj2) { $cls = AbsenceEleveTypePeer::getOMClass(false); $obj2 = new $cls(); $obj2->hydrate($row, $startcol2); AbsenceEleveTypePeer::addInstanceToPool($obj2, $key2); } // if $obj2 already loaded // Add the $obj1 (AbsenceEleveTraitement) to the collection in $obj2 (AbsenceEleveType) $obj2->addAbsenceEleveTraitement($obj1); } // if joined row is not null // Add objects for joined AbsenceEleveMotif rows $key3 = AbsenceEleveMotifPeer::getPrimaryKeyHashFromRow($row, $startcol3); if ($key3 !== null) { $obj3 = AbsenceEleveMotifPeer::getInstanceFromPool($key3); if (!$obj3) { $cls = AbsenceEleveMotifPeer::getOMClass(false); $obj3 = new $cls(); $obj3->hydrate($row, $startcol3); AbsenceEleveMotifPeer::addInstanceToPool($obj3, $key3); } // if $obj3 already loaded // Add the $obj1 (AbsenceEleveTraitement) to the collection in $obj3 (AbsenceEleveMotif) $obj3->addAbsenceEleveTraitement($obj1); } // if joined row is not null // Add objects for joined AbsenceEleveJustification rows $key4 = AbsenceEleveJustificationPeer::getPrimaryKeyHashFromRow($row, $startcol4); if ($key4 !== null) { $obj4 = AbsenceEleveJustificationPeer::getInstanceFromPool($key4); if (!$obj4) { $cls = AbsenceEleveJustificationPeer::getOMClass(false); $obj4 = new $cls(); $obj4->hydrate($row, $startcol4); AbsenceEleveJustificationPeer::addInstanceToPool($obj4, $key4); } // if $obj4 already loaded // Add the $obj1 (AbsenceEleveTraitement) to the collection in $obj4 (AbsenceEleveJustification) $obj4->addAbsenceEleveTraitement($obj1); } // if joined row is not null $results[] = $obj1; } $stmt->closeCursor(); return $results; }
/** * Move the object to a new rank, and shifts the rank * Of the objects inbetween the old and new rank accordingly * * @param integer $newRank rank value * @param PropelPDO $con optional connection * * @return AbsenceEleveJustification the current object * * @throws PropelException */ public function moveToRank($newRank, PropelPDO $con = null) { if ($this->isNew()) { throw new PropelException('New objects cannot be moved. Please use insertAtRank() instead'); } if ($con === null) { $con = Propel::getConnection(AbsenceEleveJustificationPeer::DATABASE_NAME); } if ($newRank < 1 || $newRank > AbsenceEleveJustificationQuery::create()->getMaxRank($con)) { throw new PropelException('Invalid rank ' . $newRank); } $oldRank = $this->getSortableRank(); if ($oldRank == $newRank) { return $this; } $con->beginTransaction(); try { // shift the objects between the old and the new rank $delta = ($oldRank < $newRank) ? -1 : 1; AbsenceEleveJustificationPeer::shiftRank($delta, min($oldRank, $newRank), max($oldRank, $newRank), $con); // move the object to its new rank $this->setSortableRank($newRank); $this->save($con); $con->commit(); return $this; } catch (Exception $e) { $con->rollback(); throw $e; } }
/** * Adds $delta to all Rank values that are >= $first and <= $last. * '$delta' can also be negative. * * @param int $delta Value to be shifted by, can be negative * @param int $first First node to be shifted * @param int $last Last node to be shifted * @param PropelPDO $con Connection to use. */ public static function shiftRank($delta, $first, $last = null, PropelPDO $con = null) { if ($con === null) { $con = Propel::getConnection(AbsenceEleveJustificationPeer::DATABASE_NAME, Propel::CONNECTION_WRITE); } $whereCriteria = new Criteria(AbsenceEleveJustificationPeer::DATABASE_NAME); $criterion = $whereCriteria->getNewCriterion(AbsenceEleveJustificationPeer::RANK_COL, $first, Criteria::GREATER_EQUAL); if (null !== $last) { $criterion->addAnd($whereCriteria->getNewCriterion(AbsenceEleveJustificationPeer::RANK_COL, $last, Criteria::LESS_EQUAL)); } $whereCriteria->add($criterion); $valuesCriteria = new Criteria(AbsenceEleveJustificationPeer::DATABASE_NAME); $valuesCriteria->add(AbsenceEleveJustificationPeer::RANK_COL, array('raw' => AbsenceEleveJustificationPeer::RANK_COL . ' + ?', 'value' => $delta), Criteria::CUSTOM_EQUAL); BasePeer::doUpdate($whereCriteria, $valuesCriteria, $con); AbsenceEleveJustificationPeer::clearInstancePool(); }
/** * Find object by primary key using raw SQL to go fast. * Bypass doSelect() and the object formatter by using generated code. * * @param mixed $key Primary key to use for the query * @param PropelPDO $con A connection object * * @return AbsenceEleveJustification A model object, or null if the key is not found */ protected function findPkSimple($key, $con) { $sql = 'SELECT ID, NOM, COMMENTAIRE, SORTABLE_RANK, CREATED_AT, UPDATED_AT FROM a_justifications WHERE ID = :p0'; try { $stmt = $con->prepare($sql); $stmt->bindValue(':p0', $key, PDO::PARAM_INT); $stmt->execute(); } catch (Exception $e) { Propel::log($e->getMessage(), Propel::LOG_ERR); throw new PropelException(sprintf('Unable to execute SELECT statement [%s]', $sql), $e); } $obj = null; if ($row = $stmt->fetch(PDO::FETCH_NUM)) { $obj = new AbsenceEleveJustification(); $obj->hydrate($row); AbsenceEleveJustificationPeer::addInstanceToPool($obj, (string) $key); } $stmt->closeCursor(); return $obj; }