예제 #1
0
 /**
  * Retorna els horaris que tenen pagament activat. 
  * */
 public function getHorarisAmbPreu()
 {
     $RET = array();
     $C = new Criteria();
     $C->add(EntradesPreusPeer::ACTIU, true);
     foreach (EntradesPreusPeer::doSelect($C) as $OP) {
         $RET[$OP->getHorariId()] = $OP->getHorariId();
     }
     return $RET;
 }
 /**
  * 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(EntradesPreusPeer::DATABASE_NAME, Propel::CONNECTION_READ);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria(EntradesPreusPeer::DATABASE_NAME);
         $criteria->add(EntradesPreusPeer::HORARI_ID, $pks, Criteria::IN);
         $objs = EntradesPreusPeer::doSelect($criteria, $con);
     }
     return $objs;
 }