annotate plugins/libcalendaring/lib/Sabre/VObject/includes.php @ 4:888e774ee983

libcalendar plugin as distributed
author Charlie Root
date Sat, 13 Jan 2018 08:57:56 -0500
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
1 <?php
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
2
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
3 /**
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
4 * Includes file
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
5 *
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
6 * This file includes the entire VObject library in one go.
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
7 * The benefit is that an autoloader is not needed, which is often faster.
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
8 *
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
9 * @copyright Copyright (C) 2007-2013 fruux GmbH (https://fruux.com/).
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
10 * @author Evert Pot (http://evertpot.com/)
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
11 * @license http://code.google.com/p/sabredav/wiki/License Modified BSD License
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
12 */
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
13
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
14 // Begin includes
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
15 include __DIR__ . '/DateTimeParser.php';
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
16 include __DIR__ . '/ElementList.php';
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
17 include __DIR__ . '/FreeBusyGenerator.php';
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
18 include __DIR__ . '/Node.php';
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
19 include __DIR__ . '/Parameter.php';
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
20 include __DIR__ . '/ParseException.php';
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
21 include __DIR__ . '/Property.php';
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
22 include __DIR__ . '/Reader.php';
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
23 include __DIR__ . '/RecurrenceIterator.php';
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
24 include __DIR__ . '/Splitter/SplitterInterface.php';
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
25 include __DIR__ . '/StringUtil.php';
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
26 include __DIR__ . '/TimeZoneUtil.php';
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
27 include __DIR__ . '/Version.php';
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
28 include __DIR__ . '/Splitter/VCard.php';
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
29 include __DIR__ . '/Component.php';
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
30 include __DIR__ . '/Document.php';
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
31 include __DIR__ . '/Property/Compound.php';
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
32 include __DIR__ . '/Property/DateTime.php';
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
33 include __DIR__ . '/Property/MultiDateTime.php';
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
34 include __DIR__ . '/Splitter/ICalendar.php';
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
35 include __DIR__ . '/Component/VAlarm.php';
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
36 include __DIR__ . '/Component/VCalendar.php';
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
37 include __DIR__ . '/Component/VEvent.php';
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
38 include __DIR__ . '/Component/VFreeBusy.php';
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
39 include __DIR__ . '/Component/VJournal.php';
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
40 include __DIR__ . '/Component/VTodo.php';
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
41 // End includes