mirror of
https://github.com/shavitush/bhoptimer.git
synced 2025-12-07 10:28:26 +00:00
50 lines
1.0 KiB
PHP
50 lines
1.0 KiB
PHP
<?php
|
|
|
|
// ip address to the mysql server
|
|
define('DB_HOST', 'localhost');
|
|
|
|
// mysql username
|
|
define('DB_USER', 'root');
|
|
|
|
// mysql password
|
|
define('DB_PASSWORD', '');
|
|
|
|
// mysql database (schema) name
|
|
define('DB_SCHEMA', 'shavit');
|
|
|
|
// amount of records that can be displayed
|
|
define('RECORD_LIMIT', '100');
|
|
|
|
// the page's title as seen in the homepage
|
|
define('HOMEPAGE_TITLE', "shavit's bhoptimer");
|
|
|
|
// title for the top left side of the screen
|
|
define('TOPLEFT_TITLE', 'bhoptimer');
|
|
|
|
// mysql table prefix, leave empty unless changed in the server
|
|
define('MYSQL_PREFIX', '');
|
|
|
|
// header title
|
|
define('HEADER_TITLE', 'Welcome!');
|
|
|
|
// page styling
|
|
define('PAGE_STYLE', '0'); // 0 - Default | 1 - Red/Black
|
|
|
|
// setup multi styles here
|
|
$styles = [
|
|
'Forwards', // 0
|
|
'Sideways', // 1
|
|
'W-Only', // 2
|
|
'Scroll', // 3
|
|
'400 Velocity', // 4
|
|
'Half-Sideways', // 5
|
|
];
|
|
|
|
define('DEFAULT_STYLE', 0); // 0 - forwards
|
|
|
|
// amount of records that can be displayed in 'latest records'
|
|
define('RECORD_LIMIT_LATEST', '10');
|
|
|
|
// uses rankings?
|
|
define('USES_RANKINGS', '1');
|