19 lines
445 B
PHP
Executable File
19 lines
445 B
PHP
Executable File
<?php
|
|
|
|
class Settings
|
|
{
|
|
const DB_SERVER = 'localhost';
|
|
const DB_LOGIN = '';
|
|
const DB_PASS = '';
|
|
const DB_NAME = 'spot';
|
|
const DB_ENC = 'utf8mb4';
|
|
const TEXT_ENC = 'UTF-8';
|
|
const TIMEZONE = 'Europe/Paris';
|
|
const MAPBOX_KEY = '';
|
|
const MODE = Spot::MODE_BLOG; //Spot::MODE_HISTO/MODE_BLOG
|
|
const HISTO_SPAN = array('from'=>'2015-12-29 00:00:00', 'to'=>'2016-02-23 23:59:59');
|
|
const FEED_ID = ''; //Spot Feed ID
|
|
const DEBUG = true;
|
|
}
|
|
|
|
?>
|