-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.inc.php
More file actions
39 lines (31 loc) · 1.09 KB
/
config.inc.php
File metadata and controls
39 lines (31 loc) · 1.09 KB
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
<?php
# name of all tables in database
define("TABLE_ITEMS", "ma_items");
define("TABLE_PLAYERS", "ma_players");
define("TABLE_ITEMS_LIST", "ma_items_list");
define("TABLE_MENU", "ma_menu_items");
define("TABLE_MENU_LANG", "ma_menu_locale");
define("TABLE_OFFERS", "ma_offers");
define("TABLE_LOGS", "ma_logs");
define("TABLE_LANGS", "ma_languages");
# settings - $GLOBALS - global visibility in project
# please don't change this array
$settings = array();
$settings['currency'] = "£"; # £, $, €
$settings['maxPrice'] = "140"; // 140 = 140%
$settings['pageTitle'] = "MineAuction";
$settings['default_lang'] = "en"; // only langs from php/lib/lang
$GLOBALS['settings'] = $settings;
# DB config MineAuction
$db_ma = array(
);
# DB config economy plugin
# MineAuction need to get data from another plugin
$db_economy = array(
);
$db_economy_addons = array(
"table" => "ma_players",
"money" => "money", // name of column with player money
"uuid" => "uuid", // name of column with player unicate identificator
);
$GLOBALS['economy'] = $db_economy_addons;