This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
unknown (author)
Fri Oct 24 12:01:38 -0700 2008
README
/* * Static methods that can be used to retrieve the logged in user * from anywhere * * Copyright (c) 2008 Matt Curry * www.PseudoCoder.com * http://github.com/mcurry/cakephp/tree/master/snippets/static_user * http://www.pseudocoder.com/archives/2008/10/06/accessing-user-sessions-from-models-or-anywhere-in-cakephp-revealed/ * * @author Matt Curry <matt@pseudocoder.com> * @license MIT * */ /* Description */ A snippet of code that can be dropped into your User model, which will allow you to access the logged in user from anywhere in a CakePHP app. /* Notes */ This code assumes you are using the core Auth component. /* Instructions */ 1) Paste the code into your User model. 2) In your AppController::beforeFilter add: App::import('Model', 'User'); User::store($this->Auth->user()); /* Usage */ User::get('id'); User::get('username'); User::get('Model.fieldname');







