first draft, only one (main) page
This commit is contained in:
23
settings.php
Normal file
23
settings.php
Normal 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;
|
||||
}
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user