コード例 #1
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = WorkloadGcs::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->andFilterWhere(['ref' => $this->ref, 'gcs_type' => $this->gcs_type, 'date' => $this->date, 'ward' => $this->ward]);
     $query->andFilterWhere(['like', 'an', $this->an])->andFilterWhere(['like', 'hn', $this->hn])->andFilterWhere(['like', 'e_type', $this->e_type])->andFilterWhere(['like', 'v_type', $this->v_type])->andFilterWhere(['like', 'm_type', $this->m_type])->andFilterWhere(['like', 'score', $this->score]);
     return $dataProvider;
 }
コード例 #2
0
 /**
  * Creates a new WorkloadGcs model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  * @return mixed
  */
 public function actionCreate($an)
 {
     $model = new WorkloadGcs();
     $ward = Yii::$app->user->identity->ward;
     $fullname = Yii::$app->request->get('fullname');
     $hn = Yii::$app->request->get('hn');
     $gcs_query = WorkloadGcs::find()->byAn($an);
     $dataProvider = new ActiveDataProvider(['query' => $gcs_query]);
     if (Yii::$app->request->post('WorkloadGcs') && isset($an)) {
         $model->attributes = Yii::$app->request->post('WorkloadGcs');
         $model->an = $an;
         $model->hn = $hn;
         $model->ward = $ward;
         $model->save();
         return $this->refresh();
     } else {
         return $this->render('create', ['model' => $model, 'dataProvider' => $dataProvider, 'fullname' => $fullname]);
     }
 }