/** * Creates data provider instance with search query applied * * @param array $params * * @return ActiveDataProvider */ public function search($params) { $query = Maker::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(['id' => $this->id, 'user_id' => $this->user_id]); $query->andFilterWhere(['like', 'name', $this->name])->andFilterWhere(['like', 'gender', $this->gender])->andFilterWhere(['like', 'prov', $this->prov])->andFilterWhere(['like', 'city', $this->city])->andFilterWhere(['like', 'begoodat', $this->begoodat])->andFilterWhere(['like', 'unicres', $this->unicres])->andFilterWhere(['like', 'simpcv', $this->simpcv])->andFilterWhere(['like', 'tel', $this->tel])->andFilterWhere(['like', 'wechat', $this->wechat])->andFilterWhere(['like', 'email', $this->email])->andFilterWhere(['like', 'qq', $this->qq]); return $dataProvider; }
/** * Creates a new Maker model. * If creation is successful, the browser will be redirected to the 'view' page. * @return mixed */ public function actionCreate() { $ismakerhasone = Maker::find()->where(['user_id' => \Yii::$app->user->id])->one(); // Yii::$app->MyComponent->p( $ismakerhasone->id );die() ; if ($ismakerhasone) { return $this->redirect(['update', 'id' => $ismakerhasone->id]); } $model = new Maker(); if ($model->load(Yii::$app->request->post())) { // Yii::$app->MyComponent->p( implode(",", $model->begoodat) );die() ; // Yii::$app->MyComponent->p( $model->begoodat );die() ; $model->begoodat = implode(",", $model->begoodat); $model->user_id = \Yii::$app->user->id; $model->save(); return $this->redirect(['view', 'id' => $model->id]); } else { return $this->render('create', ['model' => $model]); } }