コード例 #1
0
ファイル: SnReviewSearch.php プロジェクト: noorafree/makmakan
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = SnReview::find();
     $dataProvider = new ActiveDataProvider(['query' => $query->where(['status' => [Status::STATUS_ACTIVE, Status::STATUS_INACTIVE]])]);
     $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, 'created_date' => $this->created_date, 'modified_date' => $this->modified_date, 'status' => $this->status]);
     $query->andFilterWhere(['like', 'review', $this->review])->andFilterWhere(['like', 'icon_path', $this->icon_path])->andFilterWhere(['like', 'created_by', $this->created_by])->andFilterWhere(['like', 'modified_by', $this->modified_by]);
     return $dataProvider;
 }
コード例 #2
0
ファイル: ProductReview.php プロジェクト: noorafree/makmakan
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getSnReview()
 {
     return $this->hasOne(SnReview::className(), ['id' => 'sn_review_id']);
 }
コード例 #3
0
 /**
  * Finds the SnReview model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return SnReview the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = SnReview::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }