Changed section comments style

This commit is contained in:
alextselegidis 2016-10-16 20:35:26 +02:00
parent aacd760256
commit abb6c0e592
1 changed files with 8 additions and 3 deletions

View File

@ -25,29 +25,34 @@
* file because the old "configuration.php" is not used anymore.
*/
class Config {
// ------------------------------------------------------------------------
// General Settings
// GENERAL SETTINGS
// ------------------------------------------------------------------------
const BASE_URL = 'http://url-to-easyappointments-directory';
const LANGUAGE = 'english';
const DEBUG_MODE = FALSE;
// ------------------------------------------------------------------------
// Database Settings
// DATABASE SETTINGS
// ------------------------------------------------------------------------
const DB_HOST = '';
const DB_NAME = '';
const DB_USERNAME = '';
const DB_PASSWORD = '';
// ------------------------------------------------------------------------
// Google Calendar Sync
// 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 */