-
Notifications
You must be signed in to change notification settings - Fork 2
/
CONFIG-example.php
29 lines (20 loc) · 917 Bytes
/
CONFIG-example.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
/*
* Config File
* All modifications go here
*
/* ---------------------------------------------------------------------------------- */
$config = array();
$config['NAME'] = 'Calendar Name (optional; internal use only)';
$config['USERID'] = '<some string>%40group.calendar.google.com';
$config['MAGICCOOKIE'] = '<cookie string>';
// This tells Google Calendar the time zone that you're in
$config['STANDARDTIME'] = '-08:00'; // PST = -08:00
// $OFFSETTIME is in seconds. Make sure to use '-' to shift time back.
// This is useful if the server is located in a different timezone
// You can tell if you use this function on a php page:
// date('G:i', time())
// It tells you the hour and minute (military time) that the server is on
// Ex: My current time is 9:06am, but the function above displays 16:06... 7 hour time difference, in seconds, is 25200
/* $config['OFFSETTIME'] = -25200; */
?>