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
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Rotua Panjaitan
yii2
Commits
0b7f6491
Commit
0b7f6491
authored
May 04, 2014
by
Alexander Makarov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed setting defaults in User model of advanced app, see
bb145f50
parent
18e44195
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
1 deletion
+15
-1
User.php
apps/advanced/common/models/User.php
+14
-0
SignupForm.php
apps/advanced/frontend/models/SignupForm.php
+1
-1
No files found.
apps/advanced/common/models/User.php
View file @
0b7f6491
...
...
@@ -45,6 +45,20 @@ class User extends ActiveRecord implements IdentityInterface
}
/**
* @inheritdoc
*/
public
function
rules
()
{
return
[
[
'status'
,
'default'
,
'value'
=>
self
::
STATUS_ACTIVE
],
[
'status'
,
'in'
,
'range'
=>
[
self
::
STATUS_ACTIVE
,
self
::
STATUS_DELETED
]],
[
'role'
,
'default'
,
'value'
=>
self
::
ROLE_USER
],
[
'role'
,
'in'
,
'range'
=>
[
self
::
ROLE_USER
]],
];
}
/**
* @inheritdoc
*/
public
static
function
findIdentity
(
$id
)
...
...
apps/advanced/frontend/models/SignupForm.php
View file @
0b7f6491
...
...
@@ -48,7 +48,7 @@ class SignupForm extends Model
$user
->
email
=
$this
->
email
;
$user
->
setPassword
(
$this
->
password
);
$user
->
generateAuthKey
();
$user
->
save
(
false
);
$user
->
save
();
return
$user
;
}
...
...
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