Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
7ff1f4ae
Commit
7ff1f4ae
authored
May 06, 2014
by
Alex-Code
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update DefaultValueValidator.php
parent
8d80582f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
DefaultValueValidator.php
framework/validators/DefaultValueValidator.php
+7
-2
No files found.
framework/validators/DefaultValueValidator.php
View file @
7ff1f4ae
...
...
@@ -19,7 +19,12 @@ namespace yii\validators;
class
DefaultValueValidator
extends
Validator
{
/**
* @var mixed a closure returning the default value or the default value to be set to the specified attributes.
* @var mixed a PHP callable returning the default value or the default value to be set to the specified attributes.
* The function signature must be as follows,
*
* ~~~
* function foo($object, $attribute) {...return $value; }
* ~~~
*/
public
$value
;
/**
...
...
@@ -35,7 +40,7 @@ class DefaultValueValidator extends Validator
{
if
(
$this
->
isEmpty
(
$object
->
$attribute
))
{
if
(
$this
->
value
instanceof
\Closure
)
{
$object
->
$attribute
=
call_user_func
(
$this
->
value
);
$object
->
$attribute
=
call_user_func
(
$this
->
value
,
$object
,
$attribute
);
}
else
{
$object
->
$attribute
=
$this
->
value
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment