Exemplo n.º 1
0
 /**
  * Filter the query by a related \Tekstove\ApiBundle\Model\Lyric\LyricLanguage object
  *
  * @param \Tekstove\ApiBundle\Model\Lyric\LyricLanguage|ObjectCollection $lyricLanguage the related object to use as filter
  * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return ChildLyricQuery The current query, for fluid interface
  */
 public function filterByLyricLanguage($lyricLanguage, $comparison = null)
 {
     if ($lyricLanguage instanceof \Tekstove\ApiBundle\Model\Lyric\LyricLanguage) {
         return $this->addUsingAlias(LyricTableMap::COL_ID, $lyricLanguage->getLyricId(), $comparison);
     } elseif ($lyricLanguage instanceof ObjectCollection) {
         return $this->useLyricLanguageQuery()->filterByPrimaryKeys($lyricLanguage->getPrimaryKeys())->endUse();
     } else {
         throw new PropelException('filterByLyricLanguage() only accepts arguments of type \\Tekstove\\ApiBundle\\Model\\Lyric\\LyricLanguage or Collection');
     }
 }
 /**
  * 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 you may need to explicitly add objects
  * to the cache in order to ensure that the same objects are always returned by find*()
  * and findPk*() calls.
  *
  * @param \Tekstove\ApiBundle\Model\Lyric\LyricLanguage $obj A \Tekstove\ApiBundle\Model\Lyric\LyricLanguage 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 (null === $key) {
             $key = serialize([null === $obj->getLyricId() || is_scalar($obj->getLyricId()) || is_callable([$obj->getLyricId(), '__toString']) ? (string) $obj->getLyricId() : $obj->getLyricId(), null === $obj->getLanguageId() || is_scalar($obj->getLanguageId()) || is_callable([$obj->getLanguageId(), '__toString']) ? (string) $obj->getLanguageId() : $obj->getLanguageId()]);
         }
         // if key === null
         self::$instances[$key] = $obj;
     }
 }
Exemplo n.º 3
0
 /**
  * Exclude object from result
  *
  * @param   ChildLyricLanguage $lyricLanguage Object to remove from the list of results
  *
  * @return $this|ChildLyricLanguageQuery The current query, for fluid interface
  */
 public function prune($lyricLanguage = null)
 {
     if ($lyricLanguage) {
         $this->addCond('pruneCond0', $this->getAliasedColName(LyricLanguageTableMap::COL_LYRIC_ID), $lyricLanguage->getLyricId(), Criteria::NOT_EQUAL);
         $this->addCond('pruneCond1', $this->getAliasedColName(LyricLanguageTableMap::COL_LANGUAGE_ID), $lyricLanguage->getLanguageId(), Criteria::NOT_EQUAL);
         $this->combine(array('pruneCond0', 'pruneCond1'), Criteria::LOGICAL_OR);
     }
     return $this;
 }