You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

18 lines
486 B
PHTML

8 years ago
<?php
require 'required.php';
require 'onlyloggedin.php';
8 years ago
if (is_empty($VARS['user'])) {
sendError("Missing data.", true);
}
$badges = $database->select(
'player_badges', ["[>]badges" => ["badgeid" => "badgeid"]], ['badgesid', 'badgename', 'badgedesc', 'gotdate'], ['playeruuid' => file_get_contents("https://sso.netsyms.com/api/getguid.php?user=" . $VARS['user'])]
);
$out = [];
$out['status'] = 'OK';
$out['badges'] = $badges;
8 years ago
echo json_encode($out);