Searched defs:gameNum (Results 1 – 3 of 3) sorted by relevance
/plugin/pgn4web/pgn4web/ |
H A D | gotd.php | 35 $gameNum = get_param("gameNum", "gn", ""); variable 38 if ($gameNum == "random") { $gameNum = rand(1, $numGames); } variable 42 …if (!preg_match("/^[ +-]\d+$/", $gameNum)) { $gameNum = 0; } // space is needed since + is urldeco… variable 43 $gameNum = floor(($gameNum + ($timeNow / (60 * 60 * 24))) % $numGames) + 1; variable 45 else if ($gameNum < 1) { $gameNum = 1; } variable 46 else if ($gameNum > $numGames) { $gameNum = $numGames; } variable
|
H A D | puzzler.php | 69 $gameNum = get_param("gameNum", "gn", ""); variable 72 if ($gameNum == "random") { $gameNum = rand(1, $numGames); } variable 76 …if (!preg_match("/^[ +-]\d+$/", $gameNum)) { $gameNum = 0; } // space is needed since + is urldeco… variable 77 $gameNum = floor(($gameNum + ($timeNow / (60 * 60 * 24))) % $numGames) + 1; variable 79 else if ($gameNum < 1) { $gameNum = 1; } variable 80 else if ($gameNum > $numGames) { $gameNum = $numGames; } variable
|
H A D | pgn4web.js | 34 function customPgnHeaderTag(customTag, htmlElementId, gameNum) { argument 1586 function fullPgnGame(gameNum) { argument
|