public function actionUpdateDiploma()
 {
     $imagesModel = new Image();
     if ($imagesModel->image_file = UploadedFile::getInstance($imagesModel, 'image_file')) {
         $psychologistId = Yii::$app->user->id;
         if (Diplomas::findOne(['psychologist_id' => $psychologistId]) === null) {
             $diploma = new Diplomas();
             $diploma->psychologist_id = $psychologistId;
             $diploma->is_approved = 0;
             $diploma->save();
         }
         if ($imagesModel->saveDiploma($psychologistId)) {
             return $this->redirect('index');
         } else {
             throw new NotFoundHttpException('The requested page does not exist.');
         }
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }
Esempio n. 2
0
 /**
  * Finds the Diplomas model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return Diplomas the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = Diplomas::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }