uawdijnntqw1x1x1
IP : 216.73.216.107
Hostname : toronto-dev2
Kernel : Linux toronto-dev2 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
srv
/
users
/
craft4
/
apps
/
craft4-newsite-space
/
vendor
/
yiisoft
/
.
/
yii2-debug
/
src
/
models
/
search
/
Db.php
/
/
<?php /** * @link https://www.yiiframework.com/ * @copyright Copyright (c) 2008 Yii Software LLC * @license https://www.yiiframework.com/license/ */ namespace yii\debug\models\search; use yii\data\ArrayDataProvider; use yii\debug\components\search\Filter; /** * Search model for current request database queries. * * @author Qiang Xue <qiang.xue@gmail.com> * @author Mark Jebri <mark.github@yandex.ru> * @since 2.0 */ class Db extends Base { /** * @var string type of the input search value */ public $type; /** * @var int query attribute input search value */ public $query; /** * {@inheritdoc} */ public function rules() { return [ [['type', 'query'], 'safe'], ]; } /** * {@inheritdoc} */ public function attributeLabels() { return [ 'type' => 'Type', 'query' => 'Query', ]; } /** * Returns data provider with filled models. Filter applied if needed. * * @param array $models data to return provider for * @return \yii\data\ArrayDataProvider */ public function search($models) { $dataProvider = new ArrayDataProvider([ 'allModels' => $models, 'pagination' => false, 'sort' => [ 'attributes' => ['duration', 'seq', 'type', 'query', 'duplicate'], ], ]); if (!$this->validate()) { return $dataProvider; } $filter = new Filter(); $this->addCondition($filter, 'type', true); $this->addCondition($filter, 'query', true); $dataProvider->allModels = $filter->filter($models); return $dataProvider; } }
/srv/users/craft4/apps/craft4-newsite-space/vendor/yiisoft/./yii2-debug/src/models/search/Db.php