You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.2 KiB
Plaintext
41 lines
1.2 KiB
Plaintext
<?php
|
|
$PROJECT_ROOT=__DIR__;
|
|
$CACHE_ROOT="$PROJECT_ROOT/cache";
|
|
$ROOMS_FILE="$CACHE_ROOT/rooms.json";
|
|
$DOCUMENT_ROOT="$PROJECT_ROOT/output";
|
|
$TEMPLATES_ROOT="$PROJECT_ROOT/sites";
|
|
$LANGUAGES_ROOT="$PROJECT_ROOT/languages";
|
|
$QR_CODES="$DOCUMENT_ROOT/qr-codes";
|
|
$QR_CODES_RELATIVE="qr-codes";
|
|
$ROOM_ICONS_CACHE="$CACHE_ROOT/icons";
|
|
$ROOM_ICONS="$DOCUMENT_ROOT/icons";
|
|
$ROOM_ICONS_RELATIVE="icons";
|
|
|
|
include_once "$PROJECT_ROOT/php/utils/logging.php";
|
|
|
|
// Read the -v|--verbose option increasing logging verbosity to debug.
|
|
$options = getopt("v", ["verbose", "fast", "no-color"]);
|
|
if (isset($options["v"]) or isset($options["verbose"])) {
|
|
$LOGGING_VERBOSITY = LoggingVerbosity::Debug;
|
|
}
|
|
|
|
if (isset($options["fast"])) {
|
|
$FAST_FETCH_MODE = true;
|
|
}
|
|
|
|
if (isset($options["no-color"])) {
|
|
LoggingVerbosity::$showColor = false;
|
|
}
|
|
|
|
// set timeout for file_get_contents()
|
|
ini_set('default_socket_timeout', 6); // in seconds, default is 60
|
|
|
|
// curl timeout is millisecons
|
|
$curl_connecttimeout_ms = 3000; // time for initiation of the connection
|
|
$curl_timeout_ms = 6000; // max time for whole connection (incl. transfer)
|
|
|
|
// do not report warnings (timeouts, SSL/TLS errors)
|
|
error_reporting(E_ALL & ~E_WARNING);
|
|
|
|
date_default_timezone_set('UTC');
|
|
?> |