Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Syntax

isAnyUserAuthenticated()

Description

Excerpt

 Verifies Verifies if there is a logged in user.

...

boolean (true/false)

A true return returned value means that there is a logged in user.

Example

...

Code Block
if (isAnyUserAuthenticated()) {
    print(currentDate());
}

...