| 1 |
<?php |
| 2 |
|
| 3 |
/** |
| 4 |
* @package Zap Calendar Library Framework |
| 5 |
* |
| 6 |
* @copyright Copyright (C) 2006 - 2016 by Dan Cogliano |
| 7 |
* @license GNU General Public License version 2 or later; see LICENSE.txt |
| 8 |
* |
| 9 |
* For more information, visit https://github.com/zcontent/icalendar |
| 10 |
*/ |
| 11 |
|
| 12 |
// No direct access |
| 13 |
defined('_ZAPCAL') or die( 'Restricted access' ); |
| 14 |
|
| 15 |
// set MAXYEAR to 2036 for 32 bit systems, can be higher for 64 bit systems |
| 16 |
define('_ZAPCAL_MAXYEAR', 2036); |
| 17 |
|
| 18 |
// set MAXREVENTS to maximum #of repeating events |
| 19 |
define('_ZAPCAL_MAXREVENTS', 5000); |
| 20 |
|
| 21 |
require_once(_ZAPCAL_BASE . '/includes/date.php'); |
| 22 |
require_once(_ZAPCAL_BASE . '/includes/recurringdate.php'); |
| 23 |
require_once(_ZAPCAL_BASE . '/includes/ical.php'); |
| 24 |
require_once(_ZAPCAL_BASE . '/includes/timezone.php'); |
| 25 |
|