2017-08-12 03:19:42 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// Options for YBDB.php
|
|
|
|
|
|
|
|
$hostname_YBDB = "localhost";
|
|
|
|
$database_YBDB = "ybdb";
|
|
|
|
$username_YBDB = "admin";
|
|
|
|
$password_YBDB = "yblcatx";
|
|
|
|
|
|
|
|
// See Configurations/database_functions.php for more configuration options.
|
|
|
|
|
|
|
|
define("DEFAULT_SHOP_USER", "Stand Time");
|
|
|
|
define("DEFAULT_TRANSACTION_TYPE", "Stand Time");
|
|
|
|
define("CHANGE_FUND", 50);
|
|
|
|
|
2018-05-05 22:04:29 +00:00
|
|
|
$etherpad = array(
|
|
|
|
"host" => "https://demopad.bikelover.org",
|
|
|
|
"userName" => "PositiveSpin",
|
|
|
|
"noColors" => true,
|
|
|
|
"height" => "100%",
|
|
|
|
"plugins" => array()
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
$etherpad_global = array(
|
|
|
|
"host" => "https://demopad.bikelover.org",
|
|
|
|
"userName" => "PositiveSpin",
|
|
|
|
"noColors" => true,
|
|
|
|
"height" => "100%",
|
|
|
|
"plugins" => array()
|
|
|
|
);
|
|
|
|
|
2017-08-12 03:19:42 +00:00
|
|
|
?>
|