Example #1
0
 /**
  * Declares an association between this object and a CcSubjs object.
  *
  * @param      CcSubjs $v
  * @return     CcSess The current object (for fluent API support)
  * @throws     PropelException
  */
 public function setCcSubjs(CcSubjs $v = null)
 {
     if ($v === null) {
         $this->setUserid(NULL);
     } else {
         $this->setUserid($v->getDbId());
     }
     $this->aCcSubjs = $v;
     // Add binding for other direction of this n:n relationship.
     // If this object has already been added to the CcSubjs object, it will not be re-added.
     if ($v !== null) {
         $v->addCcSess($this);
     }
     return $this;
 }
 /**
  * Filter the query by a related CcSubjs object
  *
  * @param     CcSubjs $ccSubjs  the related object to use as filter
  * @param     string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return    CcPrefQuery The current query, for fluid interface
  */
 public function filterByCcSubjs($ccSubjs, $comparison = null)
 {
     return $this->addUsingAlias(CcPrefPeer::SUBJID, $ccSubjs->getDbId(), $comparison);
 }
Example #3
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      CcSubjs $value A CcSubjs object.
  * @param      string $key (optional) key to use for instance map (for performance boost if key was already calculated externally).
  */
 public static function addInstanceToPool(CcSubjs $obj, $key = null)
 {
     if (Propel::isInstancePoolingEnabled()) {
         if ($key === null) {
             $key = (string) $obj->getDbId();
         }
         // if key === null
         self::$instances[$key] = $obj;
     }
 }
 /**
  * Filter the query by a related CcSubjs object
  *
  * @param     CcSubjs $ccSubjs  the related object to use as filter
  * @param     string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return    CcFilesQuery The current query, for fluid interface
  */
 public function filterByCcSubjsRelatedByDbEditedby($ccSubjs, $comparison = null)
 {
     return $this->addUsingAlias(CcFilesPeer::EDITEDBY, $ccSubjs->getDbId(), $comparison);
 }
Example #5
0
 /**
  * Exclude object from result
  *
  * @param     CcSubjs $ccSubjs Object to remove from the list of results
  *
  * @return    CcSubjsQuery The current query, for fluid interface
  */
 public function prune($ccSubjs = null)
 {
     if ($ccSubjs) {
         $this->addUsingAlias(CcSubjsPeer::ID, $ccSubjs->getDbId(), Criteria::NOT_EQUAL);
     }
     return $this;
 }
 /**
  * Filter the query by a related CcSubjs object
  *
  * @param     CcSubjs $ccSubjs  the related object to use as filter
  * @param     string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return    CcPlaylistQuery The current query, for fluid interface
  */
 public function filterByCcSubjs($ccSubjs, $comparison = null)
 {
     return $this->addUsingAlias(CcPlaylistPeer::CREATOR_ID, $ccSubjs->getDbId(), $comparison);
 }
 /**
  * Filter the query by a related CcSubjs object
  *
  * @param     CcSubjs $ccSubjs  the related object to use as filter
  * @param     string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return    CcSubjsTokenQuery The current query, for fluid interface
  */
 public function filterByCcSubjs($ccSubjs, $comparison = null)
 {
     return $this->addUsingAlias(CcSubjsTokenPeer::USER_ID, $ccSubjs->getDbId(), $comparison);
 }
 /**
  * Filter the query by a related CcSubjs object
  *
  * @param     CcSubjs $ccSubjs  the related object to use as filter
  * @param     string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return    CcAccessQuery The current query, for fluid interface
  */
 public function filterByCcSubjs($ccSubjs, $comparison = null)
 {
     return $this->addUsingAlias(CcAccessPeer::OWNER, $ccSubjs->getDbId(), $comparison);
 }