4
|
1 <?php
|
|
2
|
|
3 /**
|
|
4 * Includes file
|
|
5 *
|
|
6 * This file includes the entire VObject library in one go.
|
|
7 * The benefit is that an autoloader is not needed, which is often faster.
|
|
8 *
|
|
9 * @copyright Copyright (C) 2007-2013 fruux GmbH (https://fruux.com/).
|
|
10 * @author Evert Pot (http://evertpot.com/)
|
|
11 * @license http://code.google.com/p/sabredav/wiki/License Modified BSD License
|
|
12 */
|
|
13
|
|
14 // Begin includes
|
|
15 include __DIR__ . '/DateTimeParser.php';
|
|
16 include __DIR__ . '/ElementList.php';
|
|
17 include __DIR__ . '/FreeBusyGenerator.php';
|
|
18 include __DIR__ . '/Node.php';
|
|
19 include __DIR__ . '/Parameter.php';
|
|
20 include __DIR__ . '/ParseException.php';
|
|
21 include __DIR__ . '/Property.php';
|
|
22 include __DIR__ . '/Reader.php';
|
|
23 include __DIR__ . '/RecurrenceIterator.php';
|
|
24 include __DIR__ . '/Splitter/SplitterInterface.php';
|
|
25 include __DIR__ . '/StringUtil.php';
|
|
26 include __DIR__ . '/TimeZoneUtil.php';
|
|
27 include __DIR__ . '/Version.php';
|
|
28 include __DIR__ . '/Splitter/VCard.php';
|
|
29 include __DIR__ . '/Component.php';
|
|
30 include __DIR__ . '/Document.php';
|
|
31 include __DIR__ . '/Property/Compound.php';
|
|
32 include __DIR__ . '/Property/DateTime.php';
|
|
33 include __DIR__ . '/Property/MultiDateTime.php';
|
|
34 include __DIR__ . '/Splitter/ICalendar.php';
|
|
35 include __DIR__ . '/Component/VAlarm.php';
|
|
36 include __DIR__ . '/Component/VCalendar.php';
|
|
37 include __DIR__ . '/Component/VEvent.php';
|
|
38 include __DIR__ . '/Component/VFreeBusy.php';
|
|
39 include __DIR__ . '/Component/VJournal.php';
|
|
40 include __DIR__ . '/Component/VTodo.php';
|
|
41 // End includes
|