forked from mirrors/easyappointments
41 lines
1.6 KiB
PHP
41 lines
1.6 KiB
PHP
|
<?php
|
||
|
/* ----------------------------------------------------------------------------
|
||
|
* Easy!Appointments - Open Source Web Scheduler
|
||
|
*
|
||
|
* @package EasyAppointments
|
||
|
* @author A.Tselegidis <alextselegidis@gmail.com>
|
||
|
* @copyright Copyright (c) 2013 - 2015, Alex Tselegidis
|
||
|
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
|
||
|
* @link http://easyappointments.org
|
||
|
* @since v1.0.0
|
||
|
* ---------------------------------------------------------------------------- */
|
||
|
|
||
|
/**
|
||
|
* Easy!Appointments Configuration File
|
||
|
*
|
||
|
* Set your installation BASE_URL * without the trailing slash * and the database
|
||
|
* credentials in order to connect to the database. You can enable the DEBUG_MODE
|
||
|
* while developing the application.
|
||
|
*
|
||
|
* IMPORTANT:
|
||
|
* If you are updating from version 1.0 you will have to create a new "config.php"
|
||
|
* file because the old "configuration.php" is not used anymore.
|
||
|
*/
|
||
|
class Config {
|
||
|
// ------------------------------------------------------------------------
|
||
|
// General Settings
|
||
|
// ------------------------------------------------------------------------
|
||
|
const BASE_URL = 'http://url-to-easyappointments-directory';
|
||
|
const DEBUG_MODE = FALSE;
|
||
|
|
||
|
// ------------------------------------------------------------------------
|
||
|
// Database Settings
|
||
|
// ------------------------------------------------------------------------
|
||
|
const DB_HOST = '';
|
||
|
const DB_NAME = '';
|
||
|
const DB_USERNAME = '';
|
||
|
const DB_PASSWORD = '';
|
||
|
const TABLE_PREFIX = '';
|
||
|
}
|
||
|
/* End of file config.php */
|
||
|
/* Location: ./config.php */
|