modUser.hasSessionContext
modUser::hasSessionContext
Checks if the user has a specific session context, or in other words, is "logged into" a certain context.
Syntax
boolean hasSessionContext (mixed $context)
Example
See if the User has a Session for the 'sports' Context:
if ($user->hasSessionContext('sports')) {
// do code here
}