Esempio n. 1
0
 public function actionConfirmation()
 {
     $model = new Suscripciones();
     $c = Yii::$app->request->get('c');
     $model = Suscripciones::find()->where(['codigo' => $c])->one();
     if ($model != null) {
         $model->verificado = true;
         if ($model->save()) {
             return $this->render('confirmation', ['model' => $model]);
         }
     }
 }
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = Suscripciones::find();
     $dataProvider = new ActiveDataProvider(['query' => $query]);
     $this->load($params);
     if (!$this->validate()) {
         // uncomment the following line if you do not want to any records when validation fails
         // $query->where('0=1');
         return $dataProvider;
     }
     $query->andFilterWhere(['id' => $this->id]);
     $query->andFilterWhere(['like', 'mail', $this->mail])->andFilterWhere(['like', 'nombre', $this->nombre]);
     return $dataProvider;
 }