/**
  * 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(DisciplinaPeer::DATABASE_NAME, Propel::CONNECTION_READ);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria(DisciplinaPeer::DATABASE_NAME);
         $criteria->add(DisciplinaPeer::ID, $pks, Criteria::IN);
         $objs = DisciplinaPeer::doSelect($criteria, $con);
     }
     return $objs;
 }
<?php

use_stylesheet('grade');
use_javascript('redips-drag-min.js');
$professores = ProfessorPeer::doSelect(new Criteria());
$disciplinas = DisciplinaPeer::doSelect(new Criteria());
$locais = LocalPeer::doSelect(new Criteria());
?>
<div id="grade">
<p class="title"><?php 
echo $grade->getDescription();
?>
</p>

<?php 
if (isset($periodos)) {
    ?>
<div id="drag">
 <?php 
    foreach ($periodos as $periodo) {
        ?>
  <?php 
        include_partial('periodo', array('periodo' => $periodo, 'professores' => $professores, 'locais' => $locais, 'disciplinas' => $disciplinas));
        ?>
 <?php 
    }
    ?>
 </div>
<?php 
} else {
    ?>
Beispiel #3
0
 /**
  * Gets an array of Disciplina 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 Content has previously been saved, it will retrieve
  * related Disciplinas from storage. If this Content 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 Disciplina[]
  * @throws     PropelException
  */
 public function getDisciplinas($criteria = null, PropelPDO $con = null)
 {
     if ($criteria === null) {
         $criteria = new Criteria(ContentPeer::DATABASE_NAME);
     } elseif ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
     }
     if ($this->collDisciplinas === null) {
         if ($this->isNew()) {
             $this->collDisciplinas = array();
         } else {
             $criteria->add(DisciplinaPeer::CONTENT_ID, $this->id);
             DisciplinaPeer::addSelectColumns($criteria);
             $this->collDisciplinas = DisciplinaPeer::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(DisciplinaPeer::CONTENT_ID, $this->id);
             DisciplinaPeer::addSelectColumns($criteria);
             if (!isset($this->lastDisciplinaCriteria) || !$this->lastDisciplinaCriteria->equals($criteria)) {
                 $this->collDisciplinas = DisciplinaPeer::doSelect($criteria, $con);
             }
         }
     }
     $this->lastDisciplinaCriteria = $criteria;
     return $this->collDisciplinas;
 }