modUser.isAuthenticated
Last updated Apr 17th, 2019 | Page history | Improve this page | Report an issue
Support the team building MODX with a monthly donation.
The budget raised through OpenCollective is transparent, including payouts, and any contributor can apply to be paid for their work on MODX.
Backers
Budget
$306 per month—let's make that $500!
Learn moremodUser::isAuthenticated¶
Determines if this user is authenticated in a specific context.
Separate session contexts can allow users to login/out of specific sub-sites individually (or in collections).
Syntax¶
boolean isAuthenticated ([string $sessionContext = 'web'])
Example¶
See if the User is logged into the 'web' context. If not, deny access and send to Unauthorized Page.
if (!$modx->user->isAuthenticated('web')) {
$modx->sendUnauthorizedPage();
}
See Also¶
Support the team building MODX with a monthly donation.
The budget raised through OpenCollective is transparent, including payouts, and any contributor can apply to be paid for their work on MODX.
Backers
Budget
$306 per month—let's make that $500!
Learn more