Exemple #1
0
 /**
  * If this collection has already been initialized with
  * an identical criteria, it returns the collection.
  * Otherwise if this Periodo is new, it will return
  * an empty collection; or if this Periodo has previously
  * been saved, it will retrieve related Gradeunits from storage.
  *
  * This method is protected by default in order to keep the public
  * api reasonable.  You can provide public methods for those you
  * actually need in Periodo.
  */
 public function getGradeunitsJoinWeek($criteria = null, $con = null, $join_behavior = Criteria::LEFT_JOIN)
 {
     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);
             $this->collGradeunits = GradeunitPeer::doSelectJoinWeek($criteria, $con, $join_behavior);
         }
     } else {
         // 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);
         if (!isset($this->lastGradeunitCriteria) || !$this->lastGradeunitCriteria->equals($criteria)) {
             $this->collGradeunits = GradeunitPeer::doSelectJoinWeek($criteria, $con, $join_behavior);
         }
     }
     $this->lastGradeunitCriteria = $criteria;
     return $this->collGradeunits;
 }
 /**
  * Method to invalidate the instance pool of all tables related to Week
  * by a foreign key with ON DELETE CASCADE
  */
 public static function clearRelatedInstancePool()
 {
     // invalidate objects in GradeunitPeer instance pool, since one or more of them may be deleted by ON DELETE CASCADE rule.
     GradeunitPeer::clearInstancePool();
 }
Exemple #3
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++]));
 /**
  * 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 = GradeunitPeer::getFieldNames($keyType);
     if (array_key_exists($keys[0], $arr)) {
         $this->setId($arr[$keys[0]]);
     }
     if (array_key_exists($keys[1], $arr)) {
         $this->setHorarioId($arr[$keys[1]]);
     }
     if (array_key_exists($keys[2], $arr)) {
         $this->setDisciplinaId($arr[$keys[2]]);
     }
     if (array_key_exists($keys[3], $arr)) {
         $this->setProfessorId($arr[$keys[3]]);
     }
     if (array_key_exists($keys[4], $arr)) {
         $this->setPeriodoId($arr[$keys[4]]);
     }
     if (array_key_exists($keys[5], $arr)) {
         $this->setLocalId($arr[$keys[5]]);
     }
     if (array_key_exists($keys[6], $arr)) {
         $this->setWeekdayId($arr[$keys[6]]);
     }
 }
 /**
  * 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;
 }