| Current Path : /var/www/html/jpp/backend/modules/feedback.backup/models/ |
| Current File : /var/www/html/jpp/backend/modules/feedback.backup/models/FeedbackMessagesSearch.php |
<?php
namespace backend\modules\feedback\models;
use yii\base\Model;
use yii\data\ActiveDataProvider;
use backend\modules\feedback\models\FeedbackMessages;
/**
* FeedbackMessagesSearch represents the model behind the search form of `backend\modules\feedback\models\FeedbackMessages`.
*/
class FeedbackMessagesSearch extends FeedbackMessages
{
/**
* {@inheritdoc}
*/
public function rules()
{
return [
[['id', 'feedback_id', 'created_by'], 'integer'],
[['message', 'read_status', 'send_to', 'created_at', 'created_user_type'], 'safe'],
];
}
/**
* {@inheritdoc}
*/
public function scenarios()
{
// bypass scenarios() implementation in the parent class
return Model::scenarios();
}
/**
* Creates data provider instance with search query applied
*
* @param array $params
*
* @return ActiveDataProvider
*/
public function search($params)
{
$query = FeedbackMessages::find();
// add conditions that should always apply here
$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;
}
// grid filtering conditions
$query->andFilterWhere([
'id' => $this->id,
'feedback_id' => $this->feedback_id,
'created_at' => $this->created_at,
'created_by' => $this->created_by,
]);
$query->andFilterWhere(['like', 'message', $this->message])
->andFilterWhere(['like', 'read_status', $this->read_status])
->andFilterWhere(['like', 'send_to', $this->send_to])
->andFilterWhere(['like', 'created_user_type', $this->created_user_type]);
return $dataProvider;
}
}