Ben CakePHP yönetici sistemin nasıl çalıştığını anlamakta zorlanıyorum.
- Giriş gerektiren bir eylem olan tüm kontrolörler AuthComponent veya giriş / çıkış kolları sadece birini içermesi gerekir?
$this->Session->check('Auth.User')
bu dayalı bir yönlendirme ayarlanırsaLet's say I want to protect the add action of a controller. First I createTurns out it was better to just controll this withadmin_add()
denetleyicisi ve ardındanbeforeFilter()
yönteminde ben kontrol?$this->Auth->allow()
What is the easiest way to return to the URL the user was trying to access? Is there a better way than setting a session variable?automagically yapar çıkıyor :)
If someone has a good tutorial for this I would happily read it :) I've already read this tutorial but I found it to be a little to basic and the CakePHP-docs are not that great on this topic either.