So I am building an application using Facebook login and authenthication. Everything is fine and dandy using the code below (as per the doc)
require 'facebook-php-sdk/src/facebook.php';
$facebook = new Facebook(array(
'appId' => 'YOUR_APP_ID',
'secret' => 'YOUR_APP_SECRET',
));
// Get User ID
$user = $facebook->getUser();
if ($user) {
try {
// Proceed knowing you have a logged in user who's authenticated.
$user_profile = $facebook->api('/me');
} catch (FacebookApiException $e) {
error_log($e);
$user = null;
}
}
My Question is how do I tell if the user is logged in without doing all of the above all over again elsewhere. For example in my view how would I be able to quickly test if a user is logged in or not?
Would I simply call Facebook::getUser() if so it didn't work in my Codeigniter application. I tried the code below in my view.
$user = Facebook::getUser();
and got the error:
A PHP Error was encountered
Severity: Notice
Message: Undefined property: CI_Loader::$user
Filename: src/base_facebook.php
Line Number: 504
Fatal error: Call to undefined method CI_Loader::getUserFromAvailableData() in /home/syklone911/webapps/meme/application/libraries/facebook/src/base_facebook.php on line 509
Can someone shed some light on this ?

