Session::exits
(method)
Purpose:
Checks for the existence of a session
Example:
Session::exits('sessionName);
Data Type(s):
Session::exits('sessionName);
Location:
users/classes/Session.php
Details:
Checks if a session exists when provided the session name
Session name can be found in init.php
<?php if(Session::exists('user')){ echo "true"; } ?>