Skip to content
Jurek Muszyński edited this page Mar 28, 2024 · 12 revisions

bool LOGGED

Description

Tells whether session linked to the current connection is upgraded to logged in (authenticated).

See Sessions in Node++.

Returns

true if current session is logged in, otherwise false.

Example

if ( LOGGED )
    dashboard();
else
    landing_page();
Clone this wiki locally