Files
resume/settings.php

23 lines
717 B
PHP

<?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;
}
?>