diff options
Diffstat (limited to 'includes')
-rw-r--r-- | includes/datas.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/includes/datas.php b/includes/datas.php index 952f903..e8d5871 100644 --- a/includes/datas.php +++ b/includes/datas.php @@ -941,6 +941,16 @@ function loadChallengesForMap($mapIdUnsanitized, $userIdUnsanitized) } /** + * Loads a listing of all maps and challenges for display, along with which ones the user has completed + * @param type $userIdUnsanitized The userID. Assumed to be unsanitized. + * @return Returns a MySQL resultset with the columns listed in the code, or NULL if nothing found + */ +function loadChallengeListing($userIdUnsanitized) +{ + //TODO: Implement +} + +/** * Returns the map "code" for the given mapId */ function loadMapCode($mapIdUnsanitized) |