| 1 | <?php |
|---|
| 2 | // $Id: calendar_include.php,v 1.4 2004/08/16 12:56:10 hfuecks Exp $ |
|---|
| 3 | if ( !@include 'Calendar/Calendar.php' ) { |
|---|
| 4 | @define('CALENDAR_ROOT','../'); |
|---|
| 5 | } |
|---|
| 6 | require_once(CALENDAR_ROOT . 'Year.php'); |
|---|
| 7 | require_once(CALENDAR_ROOT . 'Month.php'); |
|---|
| 8 | require_once(CALENDAR_ROOT . 'Day.php'); |
|---|
| 9 | require_once(CALENDAR_ROOT . 'Week.php'); |
|---|
| 10 | require_once(CALENDAR_ROOT . 'Hour.php'); |
|---|
| 11 | require_once(CALENDAR_ROOT . 'Minute.php'); |
|---|
| 12 | require_once(CALENDAR_ROOT . 'Second.php'); |
|---|
| 13 | require_once(CALENDAR_ROOT . 'Month.php'); |
|---|
| 14 | require_once(CALENDAR_ROOT . 'Decorator.php'); |
|---|
| 15 | require_once(CALENDAR_ROOT . 'Month/Weekdays.php'); |
|---|
| 16 | require_once(CALENDAR_ROOT . 'Month/Weeks.php'); |
|---|
| 17 | require_once(CALENDAR_ROOT . 'Validator.php'); |
|---|
| 18 | require_once(CALENDAR_ROOT . 'Engine/Interface.php'); |
|---|
| 19 | require_once(CALENDAR_ROOT . 'Engine/UnixTs.php'); |
|---|
| 20 | require_once(CALENDAR_ROOT . 'Engine/PearDate.php'); |
|---|
| 21 | require_once(CALENDAR_ROOT . 'Table/Helper.php'); |
|---|
| 22 | require_once(CALENDAR_ROOT . 'Decorator/Textual.php'); |
|---|
| 23 | require_once(CALENDAR_ROOT . 'Decorator/Uri.php'); |
|---|
| 24 | require_once(CALENDAR_ROOT . 'Decorator/Weekday.php'); |
|---|
| 25 | require_once(CALENDAR_ROOT . 'Decorator/Wrapper.php'); |
|---|
| 26 | require_once(CALENDAR_ROOT . 'Util/Uri.php'); |
|---|
| 27 | require_once(CALENDAR_ROOT . 'Util/Textual.php'); |
|---|
| 28 | ?> |
|---|