From: Jason Woofenden Date: Thu, 19 Mar 2009 08:22:08 +0000 (-0400) Subject: CONFLICT WARNING: added: logged_in() and logged_in_as_admin() X-Git-Url: https://jasonwoof.com/gitweb/?p=wfpl.git;a=commitdiff_plain;h=bf91aed8316e74c8d80c1c4b5e4645eeb6ba9dcd CONFLICT WARNING: added: logged_in() and logged_in_as_admin() --- diff --git a/session.php b/session.php index b36af68..9dc3f4e 100644 --- a/session.php +++ b/session.php @@ -125,8 +125,13 @@ function session_exists() { return true; } -# return username if a session exists and is authenticated +# depricated function session_exists_and_authed() { + return logged_in(); +} + +# return username if a session exists and is authenticated +function logged_in() { if(!session_exists()) { return false; } @@ -135,6 +140,20 @@ function session_exists_and_authed() { } + +# return username if a session exists and is authenticated +function logged_in_as_admin() { + if(!session_exists()) { + return false; + } + + if(session_get('auth_admin')) { + return true; + } + return false; +} + + # find existing session, or make one function init_session() { if(!session_exists()) {