forked from yiisoft/yii2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSafeValidator.php
41 lines (38 loc) · 1.61 KB
/
SafeValidator.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php
/**
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
namespace yii\validators;
/**
* SafeValidator serves as a dummy validator whose main purpose is to mark the attributes to be safe for massive assignment.
*
* This class is required because of the way in which Yii determines whether a property is safe for massive assignment, that is,
* when a user submits form data to be loaded into a model directly from the POST data, is it ok for a property to be copied.
* In many cases, this is required but because sometimes properties are internal and you do not want the POST data to be able to
* override these internal values (especially things like database row ids), Yii assumes all values are unsafe for massive assignment
* unless a validation rule exists for the property, which in most cases it will. Sometimes, however, an item is safe for massive assignment but
* does not have a validation rule associated with it - for instance, due to no validation being performed, in which case, you use this class
* as a validation rule for that property. Although it has no functionality, it allows Yii to determine that the property is safe to copy.
*
* > Note: [[when]] property is not supported by SafeValidator.
*
* @author Qiang Xue <[email protected]>
* @since 2.0
*/
class SafeValidator extends Validator
{
/**
* {@inheritdoc}
*/
public function validateAttributes($model, $attributes = null)
{
}
/**
* {@inheritdoc}
*/
public function validateAttribute($model, $attribute)
{
}
}