Esempio n. 1
0
 /**
  * Clears the current object, sets all attributes to their default values and removes
  * outgoing references as well as back-references (from other objects to this one. Results probably in a database
  * change of those foreign objects when you call `save` there).
  */
 public function clear()
 {
     if (null !== $this->aRig) {
         $this->aRig->removeRigAttributeValue($this);
     }
     if (null !== $this->aRigAttribute) {
         $this->aRigAttribute->removeRigAttributeValue($this);
     }
     $this->id = null;
     $this->rig_id = null;
     $this->rig_attribute_id = null;
     $this->value = null;
     $this->alreadyInSave = false;
     $this->clearAllReferences();
     $this->resetModified();
     $this->setNew(true);
     $this->setDeleted(false);
 }
Esempio n. 2
0
 /**
  * Exclude object from result
  *
  * @param   ChildRig $rig Object to remove from the list of results
  *
  * @return $this|ChildRigQuery The current query, for fluid interface
  */
 public function prune($rig = null)
 {
     if ($rig) {
         $this->addUsingAlias(RigTableMap::COL_ID, $rig->getId(), Criteria::NOT_EQUAL);
     }
     return $this;
 }
 /**
  * Filter the query by a related \Rig object
  *
  * @param \Rig|ObjectCollection $rig The related object(s) to use as filter
  * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @throws \Propel\Runtime\Exception\PropelException
  *
  * @return ChildRigAttributeValueQuery The current query, for fluid interface
  */
 public function filterByRig($rig, $comparison = null)
 {
     if ($rig instanceof \Rig) {
         return $this->addUsingAlias(RigAttributeValueTableMap::COL_RIG_ID, $rig->getId(), $comparison);
     } elseif ($rig instanceof ObjectCollection) {
         if (null === $comparison) {
             $comparison = Criteria::IN;
         }
         return $this->addUsingAlias(RigAttributeValueTableMap::COL_RIG_ID, $rig->toKeyValue('PrimaryKey', 'Id'), $comparison);
     } else {
         throw new PropelException('filterByRig() only accepts arguments of type \\Rig or Collection');
     }
 }
Esempio n. 4
0
 /**
  * Filter the query by a related \Rig object
  *
  * @param \Rig|ObjectCollection $rig the related object to use as filter
  * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return ChildUserQuery The current query, for fluid interface
  */
 public function filterByRig($rig, $comparison = null)
 {
     if ($rig instanceof \Rig) {
         return $this->addUsingAlias(UserTableMap::COL_ID, $rig->getUserId(), $comparison);
     } elseif ($rig instanceof ObjectCollection) {
         return $this->useRigQuery()->filterByPrimaryKeys($rig->getPrimaryKeys())->endUse();
     } else {
         throw new PropelException('filterByRig() only accepts arguments of type \\Rig or Collection');
     }
 }
Esempio n. 5
0
 /**
  * @param ChildRig $rig The ChildRig object to add.
  */
 protected function doAddRig(ChildRig $rig)
 {
     $this->collRigs[] = $rig;
     $rig->setUser($this);
 }
Esempio n. 6
0
 /**
  * Clears the current object, sets all attributes to their default values and removes
  * outgoing references as well as back-references (from other objects to this one. Results probably in a database
  * change of those foreign objects when you call `save` there).
  */
 public function clear()
 {
     if (null !== $this->aGame) {
         $this->aGame->removeUserReview($this);
     }
     if (null !== $this->aPlatform) {
         $this->aPlatform->removeUserReview($this);
     }
     if (null !== $this->aUser) {
         $this->aUser->removeUserReview($this);
     }
     if (null !== $this->aRating) {
         $this->aRating->removeUserReview($this);
     }
     if (null !== $this->aRig) {
         $this->aRig->removeUserReview($this);
     }
     $this->id = null;
     $this->game_id = null;
     $this->platform_id = null;
     $this->user_id = null;
     $this->rig_id = null;
     $this->rating_id = null;
     $this->review = null;
     $this->upvotes = null;
     $this->downvotes = null;
     $this->alreadyInSave = false;
     $this->clearAllReferences();
     $this->resetModified();
     $this->setNew(true);
     $this->setDeleted(false);
 }