/**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = Productoptions::find();
     $dataProvider = new ActiveDataProvider(['query' => $query]);
     if (!($this->load($params) && $this->validate())) {
         return $dataProvider;
     }
     $query->andFilterWhere(['ProductOptionId' => $this->ProductOptionId, 'ProductId' => $this->ProductId, 'ProductOptionGroupId' => $this->ProductOptionGroupId, 'ProductOptionGroupMemberId' => $this->ProductOptionGroupMemberId, 'created_by' => $this->created_by, 'LastUpdatedBy' => $this->LastUpdatedBy, 'created_at' => $this->created_at, 'updated_at' => $this->updated_at, 'deleted_at' => $this->deleted_at]);
     $query->andFilterWhere(['like', 'Value', $this->Value])->andFilterWhere(['like', 'Comment', $this->Comment]);
     return $dataProvider;
 }
 /**
  * Finds the Productoptions model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return Productoptions the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = Productoptions::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }
Example #3
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getProductoptions()
 {
     return $this->hasMany(Productoptions::className(), ['ProductId' => 'ProductId']);
 }