Exemple #1
0
        ?>
</td>
             <?php 
        $c = new Criteria();
        ?>
             <?php 
        //$c->add(GradeunitPeer::WEEKDAY_ID, $wd->getId());
        ?>
             <?php 
        $c->add(GradeunitPeer::PERIODO_ID, $periodo->getId());
        ?>
             <?php 
        $c->add(GradeunitPeer::HORARIO_ID, $horario->getId());
        ?>
             <?php 
        $gradeUnit = GradeunitPeer::doSelect($c);
        ?>
           
           <?php 
        foreach ($weekDays as $wd) {
            ?>
           <td class="handler">
             <?php 
            if (count($gradeUnit) > 0) {
                $j = 0;
                ?>
               <?php 
                if ($gradeUnit[$j]->getWeekdayId() == $wd->getId()) {
                    ?>
                <?php 
                    include_partial('gradeunit', array('gradeUnit' => $gradeUnit[$j++]));
Exemple #2
0
 /**
  * Gets an array of Gradeunit objects which contain a foreign key that references this object.
  *
  * If this collection has already been initialized with an identical Criteria, it returns the collection.
  * Otherwise if this Periodo has previously been saved, it will retrieve
  * related Gradeunits from storage. If this Periodo is new, it will return
  * an empty collection or the current collection, the criteria is ignored on a new object.
  *
  * @param      PropelPDO $con
  * @param      Criteria $criteria
  * @return     array Gradeunit[]
  * @throws     PropelException
  */
 public function getGradeunits($criteria = null, PropelPDO $con = null)
 {
     if ($criteria === null) {
         $criteria = new Criteria(PeriodoPeer::DATABASE_NAME);
     } elseif ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
     }
     if ($this->collGradeunits === null) {
         if ($this->isNew()) {
             $this->collGradeunits = array();
         } else {
             $criteria->add(GradeunitPeer::PERIODO_ID, $this->id);
             GradeunitPeer::addSelectColumns($criteria);
             $this->collGradeunits = GradeunitPeer::doSelect($criteria, $con);
         }
     } else {
         // criteria has no effect for a new object
         if (!$this->isNew()) {
             // 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(GradeunitPeer::PERIODO_ID, $this->id);
             GradeunitPeer::addSelectColumns($criteria);
             if (!isset($this->lastGradeunitCriteria) || !$this->lastGradeunitCriteria->equals($criteria)) {
                 $this->collGradeunits = GradeunitPeer::doSelect($criteria, $con);
             }
         }
     }
     $this->lastGradeunitCriteria = $criteria;
     return $this->collGradeunits;
 }
 /**
  * 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(GradeunitPeer::DATABASE_NAME, Propel::CONNECTION_READ);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria(GradeunitPeer::DATABASE_NAME);
         $criteria->add(GradeunitPeer::ID, $pks, Criteria::IN);
         $objs = GradeunitPeer::doSelect($criteria, $con);
     }
     return $objs;
 }