mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-08 17:12:25 +03:00
58 lines
2.2 KiB
PHP
58 lines
2.2 KiB
PHP
<?php
|
|
/* ----------------------------------------------------------------------------
|
|
* Easy!Appointments - Open Source Web Scheduler
|
|
*
|
|
* @package EasyAppointments
|
|
* @author A.Tselegidis <alextselegidis@gmail.com>
|
|
* @copyright Copyright (c) 2013 - 2020, 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.
|
|
*
|
|
* Set the default language by changing the LANGUAGE constant. For a full list of
|
|
* available languages look at the /application/config/config.php file.
|
|
*
|
|
* 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 LANGUAGE = 'english';
|
|
const DEBUG_MODE = FALSE;
|
|
|
|
// ------------------------------------------------------------------------
|
|
// DATABASE SETTINGS
|
|
// ------------------------------------------------------------------------
|
|
|
|
const DB_HOST = 'localhost';
|
|
const DB_NAME = 'easyappointments';
|
|
const DB_USERNAME = 'root';
|
|
const DB_PASSWORD = 'root';
|
|
|
|
// ------------------------------------------------------------------------
|
|
// GOOGLE CALENDAR SYNC
|
|
// ------------------------------------------------------------------------
|
|
|
|
const GOOGLE_SYNC_FEATURE = FALSE; // Enter TRUE or FALSE
|
|
const GOOGLE_PRODUCT_NAME = '';
|
|
const GOOGLE_CLIENT_ID = '';
|
|
const GOOGLE_CLIENT_SECRET = '';
|
|
const GOOGLE_API_KEY = '';
|
|
}
|
|
|
|
/* End of file config.php */
|
|
/* Location: ./config.php */
|