Jump to main content Jump to doc navigation

modUser::hasSessionContext

Checks if the user has a specific session context, or in other words, is "logged into" a certain context.

Syntax

API Doc: http://api.modx.com/revolution/2.2/db_core_model_modx_moduser.class.html#%5CmodUser::hasSessionContext()

boolean hasSessionContext (mixed $context)

Example

See if the User has a Session for the 'sports' Context:

if ($user->hasSessionContext('sports')) {
    // do code here
}

See Also