Refactored the language config setting.

This commit is contained in:
Alex Tselegidis 2016-01-21 20:04:55 +01:00
parent 728c740173
commit b69ad58853
2 changed files with 65 additions and 56 deletions

View File

@ -82,8 +82,19 @@ $config['url_suffix'] = '';
| than english.
|
*/
$config['language'] = Config::DEFAULT_LANGUAGE; // default language
$config['language'] = Config::LANGUAGE; // Default Language
/*
|--------------------------------------------------------------------------
| Available Languages
|--------------------------------------------------------------------------
|
| Each item of this array must be a directory with the translation files in
| the /application/language directory. The users will be able to select one
| of these languages.
|
*/
$config['available_languages'] = array(
'english',
'german',

View File

@ -1,55 +1,53 @@
<?php
/* ----------------------------------------------------------------------------
* Easy!Appointments - Open Source Web Scheduler
*
* @package EasyAppointments
* @author A.Tselegidis <alextselegidis@gmail.com>
* @copyright Copyright (c) 2013 - 2016, 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;
// options: 'english','german','greek','hungarian','portuguese',
// 'chinese','dutch','french','japanese','polish','spanish','italian',
// 'danish','luxembourgish','slovak','finnish','russian','romanian',
// 'turkish','hindi'
const DEFAULT_LANGUAGE = english;
// ------------------------------------------------------------------------
// Database Settings
// ------------------------------------------------------------------------
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 = '';
}
/* End of file config.php */
/* Location: ./config.php */
<?php
/* ----------------------------------------------------------------------------
* Easy!Appointments - Open Source Web Scheduler
*
* @package EasyAppointments
* @author A.Tselegidis <alextselegidis@gmail.com>
* @copyright Copyright (c) 2013 - 2016, 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 = '';
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 = '';
}
/* End of file config.php */
/* Location: ./config.php */