-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.php
28 lines (20 loc) · 842 Bytes
/
settings.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
/* State of the Jam - only 1 may be active at once */
$NextJamQued = false; // Generally Used with theme selection
$WaitingOnTheme = false; // Used when voting is finished and before the theme is visible
$ThemeVisible = false; // Used when voting is finished before the jam is running
$JamRunning = true; // Used with submitting and editing game entries
$JamCompleted = false; // Used with editing game entries before the next jam
/* Any of the following may be active at any time - note above and make smart choices */
$ThemeSuggestionsOpen = false;
$ThemeVotingOpen = false;
$AddGamesActive = true;
$EditGamesActive = true;
$ThemeResultsVisible = false;
$JamGalleryActive = true;
$CountdownEnabled = false;
/* $ActiveJam must be set to a valid jam ID in the database */
$ActiveJamID = 1;
$MaxSuggestions = 2;
$MaxVotes = 4;
?>