"POST", "logged_in" => true, "secure" => true]); $userid = SESSION["userId"]; $type = $_POST["type"] ?? false; $page = $_POST["page"] ?? 1; $assets = []; if(!Catalog::GetTypeByNum($type)) api::respond(400, false, "Invalid asset type"); $query = $pdo->prepare("SELECT * FROM assets WHERE creator = :uid AND type = :type ORDER BY id DESC"); $query->bindParam(":uid", $userid, PDO::PARAM_INT); $query->bindParam(":type", $type, PDO::PARAM_INT); $query->execute(); while($asset = $query->fetch(PDO::FETCH_OBJ)) { $info = Catalog::GetAssetInfo($asset->id); $assets[] = [ "name" => htmlspecialchars($asset->name), "id" => $asset->id, "thumbnail" => Thumbnails::GetAsset($asset, 110, 110), "item_url" => "/".encode_asset_name($asset->name)."-item?id=".$asset->id, "config_url" => "/my/item?ID=".$asset->id, "created" => date("n/j/Y", $asset->created), "sales-total" => $info->sales_total, "sales-week" => $info->sales_week ]; } die(json_encode(["status" => 200, "success" => true, "message" => "OK", "assets" => $assets]));