22 lines
717 B
PHP
Executable File
22 lines
717 B
PHP
Executable File
<?php
|
|
|
|
class Settings
|
|
{
|
|
const LOC_API_KEY = '1cfb97eb3c88913653f3d5bc0096e92c2e7edc523712d2bf1bcf49946571951a';
|
|
const MAIL_SCRIPT = 'http://francois.lutran.fr/send_mail.php';
|
|
const CONSUMER_KEY = 'JEZlzGK7x6Evg5ShlVHiA';
|
|
const CONSUMER_SECRET = 'khD9ljSQtJlluiemyAgbVISnb0Kl8d22Ir34ftfQX0';
|
|
const OAUTH_TOKEN = '1531614350-XnXaDmmj0qCiHh2ffDGtiwZR4RxOZ9SqXplaE8S';
|
|
const OAUTH_TOKEN_SECRET = 'otz0XQsWoSTywfHCI49QuVEOcZjvNGrgVwM7uDM';
|
|
const MAIL_API_KEY = '8D98B36BB558BC6771324AEFB9E37';
|
|
const DB_SERVER = 'localhost';
|
|
const DB_LOGIN = 'root';
|
|
const DB_PASS = '0nadmin';
|
|
const DB_NAME = '';
|
|
const DB_ENC = 'utf8mb4';
|
|
const TEXT_ENC = 'UTF-8';
|
|
const TIMEZONE = 'Europe/Paris';
|
|
const DEBUG = true;
|
|
}
|
|
|
|
?>
|