/
qwazarr
/
EducationalPractice
Обзор
Документация
Войти
/
qwazarr
/
EducationalPractice
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
models/LessonsSearch.php
71 строка
2 KB
qwazarr
'Расписание'
28 июн 2026, 17:12
28 июн 2026, 17:12
9d84635
Код
Авторство
О чём код?
<?php namespace app\models; use yii\base\Model; use yii\data\ActiveDataProvider; use app\models\Lessons; /** * LessonsSearch represents the model behind the search form of `app\models\Lessons`. */ class LessonsSearch extends Lessons { /** * {@inheritdoc} */ public function rules() { return [ [['id', 'weekday', 'lesson_number'], 'integer'], [['lesson'], '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 * @param string|null $formName Form name to be used into `->load()` method. * * @return ActiveDataProvider */ public function search($params, $formName = null) { $query = Lessons::find(); // add conditions that should always apply here $dataProvider = new ActiveDataProvider([ 'query' => $query, ]); $this->load($params, $formName); 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, 'weekday' => $this->weekday, 'lesson_number' => $this->lesson_number, ]); $query->andFilterWhere(['like', 'lesson', $this->lesson]); return $dataProvider; } }