PluginProbe
Booking Manager – Sync WP Booking Calendar – Import Events, Export Bookings to ICS Calendar / 2.1.21
Booking Manager – Sync WP Booking Calendar – Import Events, Export Bookings to ICS Calendar v2.1.21
2.1.21 2.1.20 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 trunk 1.1 2.0 2.0.1 2.0.10.2 2.0.11 2.0.12 2.0.13 2.0.14 2.0.15 2.0.16 2.0.17 2.0.18 2.0.2 2.0.20 2.0.21 2.0.22 All 55 releases
booking-manager / assets / libs / icalendar / includes / framework.php

framework.php in Booking Manager – Sync WP Booking Calendar – Import Events, Export Bookings to ICS Calendar 2.1.21, at assets/libs/icalendar/includes/framework.php

25 lines 762 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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