mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-08 17:12:25 +03:00
17 lines
666 B
PHP
17 lines
666 B
PHP
<?php defined('BASEPATH') or exit('No direct script access allowed');
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Google Calendar - Internal Configuration
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Declare some of the global config values of the Google Calendar
|
|
| synchronization feature.
|
|
|
|
|
*/
|
|
|
|
$config['google_sync_feature'] = Config::GOOGLE_SYNC_FEATURE;
|
|
$config['google_product_name'] = Config::GOOGLE_PRODUCT_NAME;
|
|
$config['google_client_id'] = Config::GOOGLE_CLIENT_ID;
|
|
$config['google_client_secret'] = Config::GOOGLE_CLIENT_SECRET;
|
|
$config['google_api_key'] = Config::GOOGLE_API_KEY;
|