Re: Validate Question
Create a variable in model
for e.g. in User model
var $auth;
and set this variable value from controller's beforeFilter function
$this->User->auth = $this->Session->read('Auth');
now you can access user id in User model this way
$userId =0;
if(!empty($this->auth['User']['id'])) {
$userId =$this->auth['User']['id'];
}
On Fri, May 10, 2013 at 4:24 PM, Advantage+ <movepixels@gmail.com> wrote:
--If the model has no access to Ssession data from correct MVC structure how do you validate user_id in the model when saving records?
Auth saves the user_id in the session when logged in but if you cannot get that in the model how do you verify the user_id?
Like Us on FaceBook https://www.facebook.com/CakePHP
Find us on Twitter http://twitter.com/CakePHP
---
You received this message because you are subscribed to the Google Groups "CakePHP" group.
To unsubscribe from this group and stop receiving emails from it, send an email to cake-php+unsubscribe@googlegroups.com.
To post to this group, send email to cake-php@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
--
Chetan Varshney
Ektanjali Softwares Pvt Ltd --
Like Us on FaceBook https://www.facebook.com/CakePHP
Find us on Twitter http://twitter.com/CakePHP
---
You received this message because you are subscribed to the Google Groups "CakePHP" group.
To unsubscribe from this group and stop receiving emails from it, send an email to cake-php+unsubscribe@googlegroups.com.
To post to this group, send email to cake-php@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home