/** * Gets an array of EtiquetaPropuesta 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 sfGuardUser has previously been saved, it will retrieve * related EtiquetaPropuestas from storage. If this sfGuardUser 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 EtiquetaPropuesta[] * @throws PropelException */ public function getEtiquetaPropuestas($criteria = null, PropelPDO $con = null) { if ($criteria === null) { $criteria = new Criteria(sfGuardUserPeer::DATABASE_NAME); } elseif ($criteria instanceof Criteria) { $criteria = clone $criteria; } if ($this->collEtiquetaPropuestas === null) { if ($this->isNew()) { $this->collEtiquetaPropuestas = array(); } else { $criteria->add(EtiquetaPropuestaPeer::SF_GUARD_USER_ID, $this->id); EtiquetaPropuestaPeer::addSelectColumns($criteria); $this->collEtiquetaPropuestas = EtiquetaPropuestaPeer::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(EtiquetaPropuestaPeer::SF_GUARD_USER_ID, $this->id); EtiquetaPropuestaPeer::addSelectColumns($criteria); if (!isset($this->lastEtiquetaPropuestaCriteria) || !$this->lastEtiquetaPropuestaCriteria->equals($criteria)) { $this->collEtiquetaPropuestas = EtiquetaPropuestaPeer::doSelect($criteria, $con); } } } $this->lastEtiquetaPropuestaCriteria = $criteria; return $this->collEtiquetaPropuestas; }
/** * Retrieve object using using composite pkey values. * @param int $etiqueta_id * @param int $propuesta_id * @param string $culture * @param int $sf_guard_user_id * @param PropelPDO $con * @return EtiquetaPropuesta */ public static function retrieveByPK($etiqueta_id, $propuesta_id, $culture, $sf_guard_user_id, PropelPDO $con = null) { $key = serialize(array((string) $etiqueta_id, (string) $propuesta_id, (string) $culture, (string) $sf_guard_user_id)); if (null !== ($obj = EtiquetaPropuestaPeer::getInstanceFromPool($key))) { return $obj; } if ($con === null) { $con = Propel::getConnection(EtiquetaPropuestaPeer::DATABASE_NAME, Propel::CONNECTION_READ); } $criteria = new Criteria(EtiquetaPropuestaPeer::DATABASE_NAME); $criteria->add(EtiquetaPropuestaPeer::ETIQUETA_ID, $etiqueta_id); $criteria->add(EtiquetaPropuestaPeer::PROPUESTA_ID, $propuesta_id); $criteria->add(EtiquetaPropuestaPeer::CULTURE, $culture); $criteria->add(EtiquetaPropuestaPeer::SF_GUARD_USER_ID, $sf_guard_user_id); $v = EtiquetaPropuestaPeer::doSelect($criteria, $con); return !empty($v) ? $v[0] : null; }