1

please, can some one tell me how to get the current logged in user in CAKEDC users plugin in cake php. i want to be able to use it at will within the application. just as wordpress' : loggedin_user(), get_current_user().

soyacode
  • 165
  • 9

1 Answers1

1

generally once a user goes through Auth in CakePHP, the way to get the user is $this->Auth->user(); Go ahead and try that in the controller ;).

Royalty
  • 392
  • 2
  • 10