Example #1
0
 /**
  * Declares an association between this object and a Consultorio object.
  *
  * @param                  Consultorio $v
  * @return Consulta The current object (for fluent API support)
  * @throws PropelException
  */
 public function setConsultorio(Consultorio $v = null)
 {
     if ($v === null) {
         $this->setIdconsultorio(NULL);
     } else {
         $this->setIdconsultorio($v->getIdconsultorio());
     }
     $this->aConsultorio = $v;
     // Add binding for other direction of this n:n relationship.
     // If this object has already been added to the Consultorio object, it will not be re-added.
     if ($v !== null) {
         $v->addConsulta($this);
     }
     return $this;
 }
Example #2
0
 /**
  * Exclude object from result
  *
  * @param   Consultorio $consultorio Object to remove from the list of results
  *
  * @return ConsultorioQuery The current query, for fluid interface
  */
 public function prune($consultorio = null)
 {
     if ($consultorio) {
         $this->addUsingAlias(ConsultorioPeer::IDCONSULTORIO, $consultorio->getIdconsultorio(), Criteria::NOT_EQUAL);
     }
     return $this;
 }
Example #3
0
 /**
  * Filter the query by a related Consultorio object
  *
  * @param   Consultorio|PropelObjectCollection $consultorio The related object(s) to use as filter
  * @param     string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return                 ConsultaQuery The current query, for fluid interface
  * @throws PropelException - if the provided filter is invalid.
  */
 public function filterByConsultorio($consultorio, $comparison = null)
 {
     if ($consultorio instanceof Consultorio) {
         return $this->addUsingAlias(ConsultaPeer::IDCONSULTORIO, $consultorio->getIdconsultorio(), $comparison);
     } elseif ($consultorio instanceof PropelObjectCollection) {
         if (null === $comparison) {
             $comparison = Criteria::IN;
         }
         return $this->addUsingAlias(ConsultaPeer::IDCONSULTORIO, $consultorio->toKeyValue('PrimaryKey', 'Idconsultorio'), $comparison);
     } else {
         throw new PropelException('filterByConsultorio() only accepts arguments of type Consultorio or PropelCollection');
     }
 }
Example #4
0
 /**
  * Adds an object to the instance pool.
  *
  * Propel keeps cached copies of objects in an instance pool when they are retrieved
  * from the database.  In some cases -- especially when you override doSelect*()
  * methods in your stub classes -- you may need to explicitly add objects
  * to the cache in order to ensure that the same objects are always returned by doSelect*()
  * and retrieveByPK*() calls.
  *
  * @param Consultorio $obj A Consultorio object.
  * @param      string $key (optional) key to use for instance map (for performance boost if key was already calculated externally).
  */
 public static function addInstanceToPool($obj, $key = null)
 {
     if (Propel::isInstancePoolingEnabled()) {
         if ($key === null) {
             $key = (string) $obj->getIdconsultorio();
         }
         // if key === null
         ConsultorioPeer::$instances[$key] = $obj;
     }
 }