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
/
Base.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\base\Model; use yii\debug\components\search\Filter; use yii\debug\components\search\matchers; /** * Base search model * * @author Mark Jebri <mark.github@yandex.ru> * @since 2.0 */ class Base extends Model { /** * Adds filtering condition for a given attribute * * @param Filter $filter filter instance * @param string $attribute attribute to filter * @param bool $partial if partial match should be used */ public function addCondition(Filter $filter, $attribute, $partial = false) { $value = (string)$this->$attribute; if (mb_strpos($value, '>') !== false) { $value = (int)str_replace('>', '', $value); $filter->addMatcher($attribute, new matchers\GreaterThan(['value' => $value])); } elseif (mb_strpos($value, '<') !== false) { $value = (int)str_replace('<', '', $value); $filter->addMatcher($attribute, new matchers\LowerThan(['value' => $value])); } else { $filter->addMatcher($attribute, new matchers\SameAs(['value' => $value, 'partial' => $partial])); } } }
/srv/users/craft4/apps/craft4-newsite-space/vendor/yiisoft/./yii2-debug/src/models/search/Base.php