| Current Path : /var/www/html/ekursus/backend/models/ |
| Current File : /var/www/html/ekursus/backend/models/TemplatSuratSearch.php |
<?php
namespace backend\models;
use Yii;
use yii\base\Model;
use yii\data\ActiveDataProvider;
use backend\models\TemplatSurat;
/**
* TemplatSuratSearch represents the model behind the search form of `backend\models\TemplatSurat`.
*/
class TemplatSuratSearch extends TemplatSurat
{
/**
* {@inheritdoc}
*/
public function rules()
{
return [
[['templat_surat_id', 'status'], 'integer'],
[['templat_name', 'kandungan', 'created_at', 'created_by', 'updated_at', 'updated_by', 'deleted_at', 'deleted_by'], '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 = TemplatSurat::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([
'templat_surat_id' => $this->templat_surat_id,
'status' => $this->status,
]);
$query->andFilterWhere(['like', 'templat_name', $this->templat_name])
->andFilterWhere(['like', 'kandungan', $this->kandungan])
->andFilterWhere(['like', 'created_at', $this->created_at])
->andFilterWhere(['like', 'created_by', $this->created_by])
->andFilterWhere(['like', 'updated_at', $this->updated_at])
->andFilterWhere(['like', 'updated_by', $this->updated_by])
->andFilterWhere(['like', 'deleted_at', $this->deleted_at])
->andFilterWhere(['like', 'deleted_by', $this->deleted_by]);
return $dataProvider;
}
}