From bf91aed8316e74c8d80c1c4b5e4645eeb6ba9dcd Mon Sep 17 00:00:00 2001 From: Jason Woofenden Date: Thu, 19 Mar 2009 04:22:08 -0400 Subject: [PATCH] CONFLICT WARNING: added: logged_in() and logged_in_as_admin() --- session.php | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) 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()) { -- 1.7.10.4