first draft, only one (main) page

This commit is contained in:
2014-06-02 11:53:18 +02:00
parent c25d541a7d
commit 8be00a6c46
17 changed files with 1312 additions and 33 deletions

23
settings.php Normal file
View File

@@ -0,0 +1,23 @@
<?php
class Settings
{
const LOC_API_KEY = 'get a API key from http://ipinfodb.com/';
const MAIL_SCRIPT = 'your mail script (optional)';
const MAIL_API_KEY = 'your mail API key (optional)';
const MAIL_ADDRESS = 'admin email address';
const CONSUMER_KEY = 'Your Twitter API KEY (consumer)';
const CONSUMER_SECRET = 'Your Twitter API KEY (consumer secret)';
const OAUTH_TOKEN = 'Your Twitter API KEY (OAuth token)';
const OAUTH_TOKEN_SECRET = 'Your Twitter API KEY (OAuth token secret)';
const DB_SERVER = 'localhost';
const DB_LOGIN = 'root';
const DB_PASS = '';
const DB_NAME = 'wedding';
const DB_ENC = 'utf8mb4';
const TEXT_ENC = 'UTF-8';
const TIMEZONE = 'Europe/Paris';
const DEBUG = false;
}
?>