Possible Duplicate:
How to get Symfony session variable in model?
I need to override save() function of one of my Models. The schema requires saving user id in the dataBase. I can’t seem to access the user object there. Any suggestions?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
With Doctrine I would create a custom behavior which adds the user id to the model.
How to do? Just look how Timestampable works.
The behavior (or my implemented Doctrine_Record_Listener) would call sfContext::getInstance()->getUser() in the preInsert() or preUpdate() hook to get the user id and set it to the model before persisting.