<?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 } ?>
/** * 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; }