/** * Get the associated Horario object * * @param PropelPDO Optional Connection object. * @return Horario The associated Horario object. * @throws PropelException */ public function getHorario(PropelPDO $con = null) { if ($this->aHorario === null && $this->horario_id !== null) { $this->aHorario = HorarioPeer::retrieveByPk($this->horario_id); /* The following can be used additionally to guarantee the related object contains a reference to this object. This level of coupling may, however, be undesirable since it could result in an only partially populated collection in the referenced object. $this->aHorario->addGradeunits($this); */ } return $this->aHorario; }
<?php if (isset($periodo)) { ?> <p class="periodo"><?php echo $periodo->getDescription(); ?> </p> <?php $horarios = HorarioPeer::doSelect(new Criteria()); $weekDays = WeekPeer::doSelect(new Criteria()); ?> <table id="periodo<?php echo $periodo->getId(); ?> "> <tr> <td> Horário </td> <?php foreach ($weekDays as $wd) { ?> <td class="mark"> <?php echo $wd->getDescription(); ?> </td> <?php } ?>
/** * Selects a collection of Gradeunit objects pre-filled with all related objects except Week. * * @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 Gradeunit objects. * @throws PropelException Any exceptions caught during processing will be * rethrown wrapped into a PropelException. */ public static function doSelectJoinAllExceptWeek(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); } GradeunitPeer::addSelectColumns($criteria); $startcol2 = GradeunitPeer::NUM_COLUMNS - GradeunitPeer::NUM_LAZY_LOAD_COLUMNS; HorarioPeer::addSelectColumns($criteria); $startcol3 = $startcol2 + (HorarioPeer::NUM_COLUMNS - HorarioPeer::NUM_LAZY_LOAD_COLUMNS); DisciplinaPeer::addSelectColumns($criteria); $startcol4 = $startcol3 + (DisciplinaPeer::NUM_COLUMNS - DisciplinaPeer::NUM_LAZY_LOAD_COLUMNS); ProfessorPeer::addSelectColumns($criteria); $startcol5 = $startcol4 + (ProfessorPeer::NUM_COLUMNS - ProfessorPeer::NUM_LAZY_LOAD_COLUMNS); PeriodoPeer::addSelectColumns($criteria); $startcol6 = $startcol5 + (PeriodoPeer::NUM_COLUMNS - PeriodoPeer::NUM_LAZY_LOAD_COLUMNS); LocalPeer::addSelectColumns($criteria); $startcol7 = $startcol6 + (LocalPeer::NUM_COLUMNS - LocalPeer::NUM_LAZY_LOAD_COLUMNS); $criteria->addJoin(GradeunitPeer::HORARIO_ID, HorarioPeer::ID, $join_behavior); $criteria->addJoin(GradeunitPeer::DISCIPLINA_ID, DisciplinaPeer::ID, $join_behavior); $criteria->addJoin(GradeunitPeer::PROFESSOR_ID, ProfessorPeer::ID, $join_behavior); $criteria->addJoin(GradeunitPeer::PERIODO_ID, PeriodoPeer::ID, $join_behavior); $criteria->addJoin(GradeunitPeer::LOCAL_ID, LocalPeer::ID, $join_behavior); // symfony_behaviors behavior foreach (sfMixer::getCallables(self::getMixerPreSelectHook(__FUNCTION__)) as $sf_hook) { call_user_func($sf_hook, 'BaseGradeunitPeer', $criteria, $con); } $stmt = BasePeer::doSelect($criteria, $con); $results = array(); while ($row = $stmt->fetch(PDO::FETCH_NUM)) { $key1 = GradeunitPeer::getPrimaryKeyHashFromRow($row, 0); if (null !== ($obj1 = GradeunitPeer::getInstanceFromPool($key1))) { // We no longer rehydrate the object, since this can cause data loss. // See http://propel.phpdb.org/trac/ticket/509 // $obj1->hydrate($row, 0, true); // rehydrate } else { $cls = GradeunitPeer::getOMClass(false); $obj1 = new $cls(); $obj1->hydrate($row); GradeunitPeer::addInstanceToPool($obj1, $key1); } // if obj1 already loaded // Add objects for joined Horario rows $key2 = HorarioPeer::getPrimaryKeyHashFromRow($row, $startcol2); if ($key2 !== null) { $obj2 = HorarioPeer::getInstanceFromPool($key2); if (!$obj2) { $cls = HorarioPeer::getOMClass(false); $obj2 = new $cls(); $obj2->hydrate($row, $startcol2); HorarioPeer::addInstanceToPool($obj2, $key2); } // if $obj2 already loaded // Add the $obj1 (Gradeunit) to the collection in $obj2 (Horario) $obj2->addGradeunit($obj1); } // if joined row is not null // Add objects for joined Disciplina rows $key3 = DisciplinaPeer::getPrimaryKeyHashFromRow($row, $startcol3); if ($key3 !== null) { $obj3 = DisciplinaPeer::getInstanceFromPool($key3); if (!$obj3) { $cls = DisciplinaPeer::getOMClass(false); $obj3 = new $cls(); $obj3->hydrate($row, $startcol3); DisciplinaPeer::addInstanceToPool($obj3, $key3); } // if $obj3 already loaded // Add the $obj1 (Gradeunit) to the collection in $obj3 (Disciplina) $obj3->addGradeunit($obj1); } // if joined row is not null // Add objects for joined Professor rows $key4 = ProfessorPeer::getPrimaryKeyHashFromRow($row, $startcol4); if ($key4 !== null) { $obj4 = ProfessorPeer::getInstanceFromPool($key4); if (!$obj4) { $cls = ProfessorPeer::getOMClass(false); $obj4 = new $cls(); $obj4->hydrate($row, $startcol4); ProfessorPeer::addInstanceToPool($obj4, $key4); } // if $obj4 already loaded // Add the $obj1 (Gradeunit) to the collection in $obj4 (Professor) $obj4->addGradeunit($obj1); } // if joined row is not null // Add objects for joined Periodo rows $key5 = PeriodoPeer::getPrimaryKeyHashFromRow($row, $startcol5); if ($key5 !== null) { $obj5 = PeriodoPeer::getInstanceFromPool($key5); if (!$obj5) { $cls = PeriodoPeer::getOMClass(false); $obj5 = new $cls(); $obj5->hydrate($row, $startcol5); PeriodoPeer::addInstanceToPool($obj5, $key5); } // if $obj5 already loaded // Add the $obj1 (Gradeunit) to the collection in $obj5 (Periodo) $obj5->addGradeunit($obj1); } // if joined row is not null // Add objects for joined Local rows $key6 = LocalPeer::getPrimaryKeyHashFromRow($row, $startcol6); if ($key6 !== null) { $obj6 = LocalPeer::getInstanceFromPool($key6); if (!$obj6) { $cls = LocalPeer::getOMClass(false); $obj6 = new $cls(); $obj6->hydrate($row, $startcol6); LocalPeer::addInstanceToPool($obj6, $key6); } // if $obj6 already loaded // Add the $obj1 (Gradeunit) to the collection in $obj6 (Local) $obj6->addGradeunit($obj1); } // if joined row is not null $results[] = $obj1; } $stmt->closeCursor(); return $results; }
/** * Retrieve multiple objects by pkey. * * @param array $pks List of primary keys * @param PropelPDO $con the connection to use * @throws PropelException Any exceptions caught during processing will be * rethrown wrapped into a PropelException. */ public static function retrieveByPKs($pks, PropelPDO $con = null) { if ($con === null) { $con = Propel::getConnection(HorarioPeer::DATABASE_NAME, Propel::CONNECTION_READ); } $objs = null; if (empty($pks)) { $objs = array(); } else { $criteria = new Criteria(HorarioPeer::DATABASE_NAME); $criteria->add(HorarioPeer::ID, $pks, Criteria::IN); $objs = HorarioPeer::doSelect($criteria, $con); } return $objs; }
/** * 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 BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME, * BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::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 = HorarioPeer::getFieldNames($keyType); if (array_key_exists($keys[0], $arr)) { $this->setId($arr[$keys[0]]); } if (array_key_exists($keys[1], $arr)) { $this->setInicio($arr[$keys[1]]); } if (array_key_exists($keys[2], $arr)) { $this->setFim($arr[$keys[2]]); } }