Ejemplo n.º 1
0
 /**
  * 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(CessioPeer::DATABASE_NAME, Propel::CONNECTION_READ);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria(CessioPeer::DATABASE_NAME);
         $criteria->add(CessioPeer::CESSIO_ID, $pks, Criteria::IN);
         $objs = CessioPeer::doSelect($criteria, $con);
     }
     return $objs;
 }
Ejemplo n.º 2
0
 /**
  * Indica on està ocupat el material en un intèrval de temps 
  * */
 public static function OnOcupatMaterialHores($idM, $datai, $dataf, $hi, $hf, $idS, $idG = null, $idH = null, $idC = null)
 {
     //Busquem primer l'horari en el que està ocupat.
     //Altrament busquem la cessió en la que està ocupat
     //Agafo les activitats que tenen material ocupat una data determinada.
     $CESSIO = array();
     $C = self::criteriaOcupatCessio($datai, $dataf, $hi, $hf, $idS, $idG, $idH, $idC);
     foreach (CessioPeer::doSelect($C) as $OC) {
         $CESSIO[$idM] = $OC;
     }
     $C = self::criteriaOcupatEspais($datai, $dataf, $hi, $hf, $idS, $idG, $idH, $idC);
     foreach (HorarisPeer::doSelect($C) as $OH) {
         $CESSIO[$idM] = $OH;
     }
     return $CESSIO;
 }
Ejemplo n.º 3
0
 /**
  * Gets an array of Cessio 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 Usuaris has previously been saved, it will retrieve
  * related Cessios from storage. If this Usuaris 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 Cessio[]
  * @throws     PropelException
  */
 public function getCessios($criteria = null, PropelPDO $con = null)
 {
     if ($criteria === null) {
         $criteria = new Criteria(UsuarisPeer::DATABASE_NAME);
     } elseif ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
     }
     if ($this->collCessios === null) {
         if ($this->isNew()) {
             $this->collCessios = array();
         } else {
             $criteria->add(CessioPeer::USUARI_ID, $this->usuariid);
             CessioPeer::addSelectColumns($criteria);
             $this->collCessios = CessioPeer::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(CessioPeer::USUARI_ID, $this->usuariid);
             CessioPeer::addSelectColumns($criteria);
             if (!isset($this->lastCessioCriteria) || !$this->lastCessioCriteria->equals($criteria)) {
                 $this->collCessios = CessioPeer::doSelect($criteria, $con);
             }
         }
     }
     $this->lastCessioCriteria = $criteria;
     return $this->collCessios;
 }