| Current Path : /var/www/html/dosmv2/backend/models/frontendcontenttemplate/ |
| Current File : /var/www/html/dosmv2/backend/models/frontendcontenttemplate/FrontendContentTemplateSearch.php |
<?php
namespace backend\models\frontendcontenttemplate;
use Yii;
use yii\base\Model;
use yii\data\ActiveDataProvider;
use backend\models\frontendcontenttemplate\FrontendContentTemplate;
/**
* FrontendContentTemplateSearch represents the model behind the search form of `backend\models\frontendcontenttemplate\FrontendContentTemplate`.
*/
class FrontendContentTemplateSearch extends FrontendContentTemplate
{
/**
* {@inheritdoc}
*/
public function rules()
{
return [
[['frontend_content_template_id', 'template_status', 'created_by', 'updated_by'], 'integer'],
[['template_title', 'template_description', 'template_html', 'created_date', 'updated_date'], '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 = FrontendContentTemplate::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([
'frontend_content_template_id' => $this->frontend_content_template_id,
'template_status' => $this->template_status,
'created_date' => $this->created_date,
'updated_date' => $this->updated_date,
'created_by' => $this->created_by,
'updated_by' => $this->updated_by,
]);
$query->andFilterWhere(['like', 'template_title', $this->template_title])
->andFilterWhere(['like', 'template_description', $this->template_description])
->andFilterWhere(['like', 'template_html', $this->template_html]);
return $dataProvider;
}
}