Syntax
isAnyUserAuthenticated()
Description
Verifies if there is a logged in user.Parameters
None
Return type
boolean (true/false)
A true returned value means that there is a logged in user.
Example
if (isAnyUserAuthenticated()) { print(currentDate()); }
This example will print the current date. If there is nobody logged in, the current date will not be printed.
See also