コード例 #1
0
ファイル: UserDomain.php プロジェクト: keeko/core
 /**
  * @param User $user
  */
 protected function postCreate(User $user)
 {
     $userGroup = GroupQuery::create()->filterByIsDefault(true)->findOne();
     if ($userGroup) {
         $user->addGroup($userGroup);
         $user->save();
     }
 }
コード例 #2
0
ファイル: UserGroup.php プロジェクト: keeko/core
 /**
  * Performs the work of inserting or updating the row in the database.
  *
  * If the object is new, it inserts it; otherwise an update is performed.
  * All related objects are also updated in this method.
  *
  * @param      ConnectionInterface $con
  * @return int             The number of rows affected by this insert/update and any referring fk objects' save() operations.
  * @throws PropelException
  * @see save()
  */
 protected function doSave(ConnectionInterface $con)
 {
     $affectedRows = 0;
     // initialize var to track total num of affected rows
     if (!$this->alreadyInSave) {
         $this->alreadyInSave = true;
         // We call the save method on the following object(s) if they
         // were passed to this object by their corresponding set
         // method.  This object relates to these object(s) by a
         // foreign key reference.
         if ($this->aGroup !== null) {
             if ($this->aGroup->isModified() || $this->aGroup->isNew()) {
                 $affectedRows += $this->aGroup->save($con);
             }
             $this->setGroup($this->aGroup);
         }
         if ($this->aUser !== null) {
             if ($this->aUser->isModified() || $this->aUser->isNew()) {
                 $affectedRows += $this->aUser->save($con);
             }
             $this->setUser($this->aUser);
         }
         if ($this->isNew() || $this->isModified()) {
             // persist changes
             if ($this->isNew()) {
                 $this->doInsert($con);
                 $affectedRows += 1;
             } else {
                 $affectedRows += $this->doUpdate($con);
             }
             $this->resetModified();
         }
         $this->alreadyInSave = false;
     }
     return $affectedRows;
 }
コード例 #3
0
ファイル: Judge.php プロジェクト: iuf/junia
 /**
  * Performs the work of inserting or updating the row in the database.
  *
  * If the object is new, it inserts it; otherwise an update is performed.
  * All related objects are also updated in this method.
  *
  * @param      ConnectionInterface $con
  * @return int             The number of rows affected by this insert/update and any referring fk objects' save() operations.
  * @throws PropelException
  * @see save()
  */
 protected function doSave(ConnectionInterface $con)
 {
     $affectedRows = 0;
     // initialize var to track total num of affected rows
     if (!$this->alreadyInSave) {
         $this->alreadyInSave = true;
         // We call the save method on the following object(s) if they
         // were passed to this object by their corresponding set
         // method.  This object relates to these object(s) by a
         // foreign key reference.
         if ($this->aStartgroup !== null) {
             if ($this->aStartgroup->isModified() || $this->aStartgroup->isNew()) {
                 $affectedRows += $this->aStartgroup->save($con);
             }
             $this->setStartgroup($this->aStartgroup);
         }
         if ($this->aUser !== null) {
             if ($this->aUser->isModified() || $this->aUser->isNew()) {
                 $affectedRows += $this->aUser->save($con);
             }
             $this->setUser($this->aUser);
         }
         if ($this->isNew() || $this->isModified()) {
             // persist changes
             if ($this->isNew()) {
                 $this->doInsert($con);
                 $affectedRows += 1;
             } else {
                 $affectedRows += $this->doUpdate($con);
             }
             $this->resetModified();
         }
         if ($this->scoresScheduledForDeletion !== null) {
             if (!$this->scoresScheduledForDeletion->isEmpty()) {
                 \iuf\junia\model\ScoreQuery::create()->filterByPrimaryKeys($this->scoresScheduledForDeletion->getPrimaryKeys(false))->delete($con);
                 $this->scoresScheduledForDeletion = null;
             }
         }
         if ($this->collScores !== null) {
             foreach ($this->collScores as $referrerFK) {
                 if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         if ($this->performanceScoresScheduledForDeletion !== null) {
             if (!$this->performanceScoresScheduledForDeletion->isEmpty()) {
                 \iuf\junia\model\PerformanceScoreQuery::create()->filterByPrimaryKeys($this->performanceScoresScheduledForDeletion->getPrimaryKeys(false))->delete($con);
                 $this->performanceScoresScheduledForDeletion = null;
             }
         }
         if ($this->collPerformanceScores !== null) {
             foreach ($this->collPerformanceScores as $referrerFK) {
                 if (!$referrerFK->isDeleted() && ($referrerFK->isNew() || $referrerFK->isModified())) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         $this->alreadyInSave = false;
     }
     return $affectedRows;
 }