* Clear the configuration.php parameters.

This commit is contained in:
alextselegidis@gmail.com 2013-10-29 09:59:13 +00:00
parent 2e7e668465
commit d5ee6a03b2

View file

@ -1,20 +1,20 @@
<?php
class SystemConfiguration {
// General Settings
public static $base_url = 'http://localhost/dev/external/easy_appointments/trunk/src/';
public static $base_url = 'http://url-to-easyappointments-folder/';
// Database Settings
public static $db_host = 'localhost';
public static $db_name = 'new_ea'; //'easy_appointments';
public static $db_username = 'root';
public static $db_name = '';
public static $db_username = '';
public static $db_password = '';
// Google Calendar API Settings
public static $google_sync_feature = TRUE; // Enter TRUE or FALSE;
public static $google_product_name = 'Easy!Appointments';
public static $google_client_id = '396094740598-l9ohhdgs0hr6qi89628p3chf9lm59mkc.apps.googleusercontent.com';
public static $google_client_secret = '3kKEgx3mgxfFInrWf3jTUn4D';
public static $google_api_key = 'AIzaSyCLMin3-ePz8xShJ7klSduo7iChDV7ldc0';
public static $google_product_name = '';
public static $google_client_id = '';
public static $google_client_secret = '';
public static $google_api_key = '';
}
/* End of file configuration.php */