forked from noobscode/Game-Server-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.php
88 lines (61 loc) · 2.88 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?php
/*
* This is a config file for The Game Server Website
* Created by Alexander Nordbø (https://github.com/noobscode/)
* Latest versions - https://github.com/noobscode/Game-Server-Website
*/
//======================================================================
// General Configuration
//======================================================================
define( "SITE_URL" , "https://example.com" );
# Your website URL
define( "SITE_TITLE" , "Game Server Website" );
# Server name will be used as title
define( "SITE_SLOGAN" , "A beautiful Bootstrap Game Server Website Template with API to battlemetrics.com and rust-servers.net" );
# Server or project slogan, will be used as slogan and description
//======================================================================
// API Configuration
//======================================================================
// We currently support Rust-Servers.Net and Battlemetrics.com API
// Note that they both have their pros and cons due to what they give us in terms of information from the json data.
// If you want you can use them both at the same time. This way you can have a table / server list showing rust servers using rust-servers.net API
// and use battlemetrics.com API for other servers like CS, Arma, Ark etc.
define( "API_BattleMetrics_com" , "ON" );
# Enable Battlemetrics.com API
define( "API_Rustservers_net" , "OFF" );
# Enable Rust-Servers.Net API
//======================================================================
// Turn tips on/off
//======================================================================
define( "tips" , "OFF" );
# If you enable this it will insert a line between each module with a description for that module.
//======================================================================
// Social Section
//======================================================================
$DiscordInvLink = "https://discord.com";
define( "social_twitter" , "OFF" );
# Twitter Handle
//======================================================================
// Content Configuration
//======================================================================
define( "MODULE_TopHeader" , "ON" );
# Show Top Header
define( "MODULE_herotext" , "ON" );
# Display some header text above server list.
define( "MODULE_Servers" , "ON" );
# Show server list on page)
define( "MODULE_maintenance" , "ON" );
# Display maintenance status.
define( "MODULE_Cards" , "ON" );
# 3 column Bootstrap cards bellow the server list.
define( "MODULE_pricing_table" , "ON" );
# 3 column pricing table
define( "MODULE_rules" , "OFF" );
# Display rules.
define( "MODULE_rules_accordion" , "ON" );
# Display rules in a collapse menu.
define( "MODULE_faq" , "OFF" );
# Display FAQ.
define( "MODULE_faq_accordion" , "ON" );
# Display FAQ in a collapse menu.
?>