/**
  * Filter the query by a related CcTag object
  *
  * @param     CcTag $ccTag  the related object to use as filter
  * @param     string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return    CcFileTagQuery The current query, for fluid interface
  */
 public function filterByCcTag($ccTag, $comparison = null)
 {
     return $this->addUsingAlias(CcFileTagPeer::TAG_ID, $ccTag->getDbId(), $comparison);
 }
예제 #2
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      CcTag $value A CcTag object.
  * @param      string $key (optional) key to use for instance map (for performance boost if key was already calculated externally).
  */
 public static function addInstanceToPool(CcTag $obj, $key = null)
 {
     if (Propel::isInstancePoolingEnabled()) {
         if ($key === null) {
             $key = (string) $obj->getDbId();
         }
         // if key === null
         self::$instances[$key] = $obj;
     }
 }
예제 #3
0
 /**
  * Declares an association between this object and a CcTag object.
  *
  * @param      CcTag $v
  * @return     CcFileTag The current object (for fluent API support)
  * @throws     PropelException
  */
 public function setCcTag(CcTag $v = null)
 {
     if ($v === null) {
         $this->setDbTagId(NULL);
     } else {
         $this->setDbTagId($v->getDbId());
     }
     $this->aCcTag = $v;
     // Add binding for other direction of this n:n relationship.
     // If this object has already been added to the CcTag object, it will not be re-added.
     if ($v !== null) {
         $v->addCcFileTag($this);
     }
     return $this;
 }
예제 #4
0
 /**
  * Exclude object from result
  *
  * @param     CcTag $ccTag Object to remove from the list of results
  *
  * @return    CcTagQuery The current query, for fluid interface
  */
 public function prune($ccTag = null)
 {
     if ($ccTag) {
         $this->addUsingAlias(CcTagPeer::ID, $ccTag->getDbId(), Criteria::NOT_EQUAL);
     }
     return $this;
 }