diff options
author | Arun Persaud <arun@nubati.net> | 2010-02-02 22:37:27 -0800 |
---|---|---|
committer | Arun Persaud <arun@nubati.net> | 2010-02-04 22:17:09 -0800 |
commit | b76cddb9313d8a67e5d7e1830503b5775666238f (patch) | |
tree | 29a1b79a6f0578c804318a9cf741ab51538940a6 /include/db.php | |
parent | 3b407a98fe0243cef87fdd64aeb4f567cca41f40 (diff) | |
download | e-DoKo-b76cddb9313d8a67e5d7e1830503b5775666238f.tar.gz e-DoKo-b76cddb9313d8a67e5d7e1830503b5775666238f.tar.bz2 e-DoKo-b76cddb9313d8a67e5d7e1830503b5775666238f.zip |
NEW FEATURE: provide an RSS feed for each user showing in which games it's his turn
the feed shows the same as the "It's your turn in these games" box.
Diffstat (limited to 'include/db.php')
-rw-r--r-- | include/db.php | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/include/db.php b/include/db.php index 882a1ad..55d97c9 100644 --- a/include/db.php +++ b/include/db.php @@ -498,6 +498,15 @@ function DB_update_game_timestamp($gameid) return; } +function DB_get_game_timestamp($gameid) +{ + $r = DB_query_array("SELECT mod_date FROM Game WHERE id=".DB_quote_smart($gameid)); + + if($r) + return $r[0]; + else + return NULL; +} function DB_update_user_timestamp($userid) { @@ -514,6 +523,17 @@ function DB_get_user_timestamp($userid) else return NULL; } + +function DB_get_user_creation_date($userid) +{ + $r = DB_query_array("SELECT create_date FROM User WHERE id=".DB_quote_smart($userid)); + + if($r) + return $r[0]; + else + return NULL; +} + function DB_get_user_timezone($userid) { $r = DB_query_array("SELECT timezone FROM User WHERE id=".DB_quote_smart($userid)); |