function testNullDate()
 {
     $emp = new Employe(array('firstname' => 'Steve', 'lastname' => 'Austin'));
     $emp->save();
     $emp = SActiveStore::findFirst('Employe');
     $this->assertNull($emp->date_of_birth);
 }
Beispiel #2
0
 /**
  * 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      PropelPDO $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(PropelPDO $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 coresponding set
         // method.  This object relates to these object(s) by a
         // foreign key reference.
         if ($this->aVehicule !== null) {
             if ($this->aVehicule->isModified() || $this->aVehicule->isNew()) {
                 $affectedRows += $this->aVehicule->save($con);
             }
             $this->setVehicule($this->aVehicule);
         }
         if ($this->aEmploye !== null) {
             if ($this->aEmploye->isModified() || $this->aEmploye->isNew()) {
                 $affectedRows += $this->aEmploye->save($con);
             }
             $this->setEmploye($this->aEmploye);
         }
         if ($this->isNew()) {
             $this->modifiedColumns[] = InterventionPeer::ID;
         }
         // If this object has been modified, then save it to the database.
         if ($this->isModified()) {
             if ($this->isNew()) {
                 $pk = InterventionPeer::doInsert($this, $con);
                 $affectedRows += 1;
                 // we are assuming that there is only 1 row per doInsert() which
                 // should always be true here (even though technically
                 // BasePeer::doInsert() can insert multiple rows).
                 $this->setId($pk);
                 //[IMV] update autoincrement primary key
                 $this->setNew(false);
             } else {
                 $affectedRows += InterventionPeer::doUpdate($this, $con);
             }
             $this->resetModified();
             // [HL] After being saved an object is no longer 'modified'
         }
         $this->alreadyInSave = false;
     }
     return $affectedRows;
 }
Beispiel #3
0
 /**
  * ACTION CREATE note | $id=PrimaryKey -> TRIGER FROM VIEW  -ptr.nov-
  */
 public function actionCreate()
 {
     $model = new Employe();
     if ($model->load(Yii::$app->request->post())) {
         $upload_file = $model->uploadFile();
         var_dump($model->validate());
         if ($model->validate()) {
             if ($model->save()) {
                 if ($upload_file !== false) {
                     $path = $model->getUploadedFile();
                     $upload_file->saveAs($path);
                 }
                 return $this->redirect(['view', 'id' => $model->EMP_ID]);
             }
         }
     } else {
         return $this->render('create', ['model' => $model]);
     }
 }