MaketRandevu/src/config-sample.php

56 lines
2.3 KiB
PHP
Raw Normal View History

2015-01-29 00:53:13 +02:00
<?php
/* ----------------------------------------------------------------------------
* Easy!Appointments - Open Source Web Scheduler
*
2015-04-22 00:21:46 +03:00
* @package EasyAppointments
* @author A.Tselegidis <alextselegidis@gmail.com>
2016-01-02 15:47:04 +02:00
* @copyright Copyright (c) 2013 - 2016, Alex Tselegidis
2015-04-22 00:21:46 +03:00
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
* @link http://easyappointments.org
* @since v1.0.0
2015-01-29 00:53:13 +02:00
* ---------------------------------------------------------------------------- */
/**
* 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 {
2015-04-22 00:21:46 +03:00
// ------------------------------------------------------------------------
2015-01-29 00:53:13 +02:00
// General Settings
2015-04-22 00:21:46 +03:00
// ------------------------------------------------------------------------
const BASE_URL = 'http://url-to-easyappointments-directory';
const DEBUG_MODE = FALSE;
2016-01-19 20:28:37 +02:00
// options: 'english','german','greek','hungarian','portuguese',
// 'chinese','dutch','french','japanese','polish','spanish','italian',
// 'danish','luxembourgish','slovak','finnish','russian','romanian',
// 'turkish','hindi'
2016-01-19 20:28:37 +02:00
const DEFAULT_LANGUAGE = english;
2015-01-29 00:53:13 +02:00
// ------------------------------------------------------------------------
// Database Settings
// ------------------------------------------------------------------------
2015-04-22 00:21:46 +03:00
const DB_HOST = '';
const DB_NAME = '';
const DB_USERNAME = '';
const DB_PASSWORD = '';
// ------------------------------------------------------------------------
// 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 */
2016-01-19 20:28:37 +02:00
/* Location: ./config.php */