iflrandevu/src/config-sample.php

50 lines
2.0 KiB
PHP
Raw Normal View History

2015-01-29 00:53:13 +02:00
<?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 = '';
// ------------------------------------------------------------------------
// 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 = '';
2015-01-29 00:53:13 +02:00
}
/* End of file config.php */
/* Location: ./config.php */