surat/frontend/modules/administrator/models/HospitalImportSearch.php

73 lines
1.9 KiB
PHP
Raw Normal View History

2026-02-16 07:32:27 +00:00
<?php
namespace frontend\modules\administrator\models;
use yii\base\Model;
use yii\data\ActiveDataProvider;
use common\models\HospitalImport;
/**
* HospitalImportSearch represents the model behind the search form of `common\models\HospitalImport`.
*/
class HospitalImportSearch extends HospitalImport
{
/**
* {@inheritdoc}
*/
public function rules()
{
return [
[['id'], 'integer'],
[['req_no', 'id_case', 'hn', 'title', 'firstName', 'lastName'], '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 = HospitalImport::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,
]);
$query->andFilterWhere(['like', 'req_no', $this->req_no])
->andFilterWhere(['like', 'id_case', $this->id_case])
->andFilterWhere(['like', 'hn', $this->hn])
->andFilterWhere(['like', 'title', $this->title])
->andFilterWhere(['like', 'firstName', $this->firstName])
->andFilterWhere(['like', 'lastName', $this->lastName]);
return $dataProvider;
}
}