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.');
     }
 }
Exemple #2
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = Diplomas::find();
     $dataProvider = new ActiveDataProvider(['query' => $query]);
     $this->load($params);
     if (!$this->validate()) {
         // uncomment the following line if you do not want to return any records when validation fails
         // $query->where('0=1');
         return $dataProvider;
     }
     $query->with('diplomaOwner');
     $query->andFilterWhere(['id' => $this->id, 'psychologist_id' => $this->psychologist_id, 'is_approved' => $this->is_approved, 'created_at' => $this->created_at, 'updated_at' => $this->updated_at]);
     return $dataProvider;
 }
 /**
  * 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.');
     }
 }