/**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = UserFile::find();
     // add conditions that should always apply here
     $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;
     }
     // grid filtering conditions
     $query->andFilterWhere(['ID' => $this->ID, 'STATUS' => $this->STATUS]);
     $query->andFilterWhere(['like', 'USER_ID', $this->USER_ID])->andFilterWhere(['like', 'FILE_PATH', $this->FILE_PATH])->andFilterWhere(['like', 'FILE_NM', $this->FILE_NM]);
     return $dataProvider;
 }
 public function actionUpload()
 {
     $model = new UserFile();
     if ($model->load(Yii::$app->request->post())) {
         if ($model->validate()) {
             $model->USER_ID = Yii::$app->user->identity->username;
             $exportFile = $model->uploadFile();
             if ($model->save()) {
                 //upload only if valid uploaded file instance found
                 if ($exportFile !== false) {
                     $path = $model->getImageFile();
                     $exportFile->saveAs($path);
                     return $this->redirect(['index', 'id' => $model->FILE_NM]);
                 }
             }
         }
     }
 }
Esempio n. 3
0
 /**
  * Finds the UserFile model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param string $id
  * @return UserFile the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = UserFile::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }