[eluser]Timothy_[/eluser]
Hello,
Im using the Redux Authentication package 2. BETA Release.
Im trying to figure out how I can get controllers to check if a user has logged in.
I have done a fair bit of research and it looks like Redux Uses a variable called $status to output a boolean value.
However after trying this it looks like the variable isn't globally accessible.
I also found in my research some code that looks like this
Code:
function index(){
if($this->redux_auth->logged_in()){
[…]
}else{
[…]
}
}
Shame it doesnt work for me.
Any help would be appreciated.
Thanks
Tim
PS. I love CodeIgniter!!!!