summaryrefslogtreecommitdiff
path: root/html/import/import_renderer-preconfig.php
blob: bb8352660c17956a6768e5b518a2b912d41449b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
	require_once 'includes/renderer-general-import.php';

	$safe_uid = mysql_real_escape_string($uid);

	// Get relevant info
	$playerinfo = getPlayerTeam($uid);
	$playernames = $playerinfo[0];
	$playerteams = $playerinfo[1];
	$playernumberofteams = $playerinfo[2];
	
	$time_gameinfo = getGameStartEndRatio($uid);
	$time_gamestart = $time_gameinfo[0];
	$time_gameend = $time_gameinfo[1];
	$time_ratio_correction = $time_gameinfo[2];	
	
?>