%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/water/vendor/yiisoft/yii2/validators/ |
Upload File : |
<?php /** * @link http://www.yiiframework.com/ * @copyright Copyright (c) 2008 Yii Software LLC * @license http://www.yiiframework.com/license/ */ namespace yii\validators; use yii\base\InvalidConfigException; /** * FilterValidator converts the attribute value according to a filter. * * FilterValidator is actually not a validator but a data processor. * It invokes the specified filter callback to process the attribute value * and save the processed value back to the attribute. The filter must be * a valid PHP callback with the following signature: * * ```php * function foo($value) { * // compute $newValue here * return $newValue; * } * ``` * * Many PHP functions qualify this signature (e.g. `trim()`). * * To specify the filter, set [[filter]] property to be the callback. * * @author Qiang Xue <qiang.xue@gmail.com> * @since 2.0 */ class FilterValidator extends Validator { /** * @var callable the filter. This can be a global function name, anonymous function, etc. * The function signature must be as follows, * * ```php * function foo($value) { * // compute $newValue here * return $newValue; * } * ``` */ public $filter; /** * @var bool whether the filter should be skipped if an array input is given. * If true and an array input is given, the filter will not be applied. */ public $skipOnArray = false; /** * @var bool this property is overwritten to be false so that this validator will * be applied when the value being validated is empty. */ public $skipOnEmpty = false; /** * {@inheritdoc} */ public function init() { parent::init(); if ($this->filter === null) { throw new InvalidConfigException('The "filter" property must be set.'); } } /** * {@inheritdoc} */ public function validateAttribute($model, $attribute) { $value = $model->$attribute; if (!$this->skipOnArray || !is_array($value)) { $model->$attribute = call_user_func($this->filter, $value); } } /** * {@inheritdoc} */ public function clientValidateAttribute($model, $attribute, $view) { if ($this->filter !== 'trim') { return null; } ValidationAsset::register($view); $options = $this->getClientOptions($model, $attribute); return 'value = yii.validation.trim($form, attribute, ' . json_encode($options, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE) . ', value);'; } /** * {@inheritdoc} */ public function getClientOptions($model, $attribute) { $options = []; if ($this->skipOnEmpty) { $options['skipOnEmpty'] = 1; } return $options; } }