source: branches/version-2_5-dev/data/module/Calendar/tests/calendar_include.php @ 20116

Revision 20116, 1.1 KB checked in by nanasess, 13 years ago (diff)
  • svn properties を再設定
  • 再設定用のスクリプト追加
  • Property svn:eol-style set to LF
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-httpd-php; charset=UTF-8
Line 
1<?php
2// $Id$
3if ( !@include 'Calendar/Calendar.php' ) {
4    @define('CALENDAR_ROOT','../');
5}
6require_once(CALENDAR_ROOT . 'Year.php');
7require_once(CALENDAR_ROOT . 'Month.php');
8require_once(CALENDAR_ROOT . 'Day.php');
9require_once(CALENDAR_ROOT . 'Week.php');
10require_once(CALENDAR_ROOT . 'Hour.php');
11require_once(CALENDAR_ROOT . 'Minute.php');
12require_once(CALENDAR_ROOT . 'Second.php');
13require_once(CALENDAR_ROOT . 'Month.php');
14require_once(CALENDAR_ROOT . 'Decorator.php');
15require_once(CALENDAR_ROOT . 'Month/Weekdays.php');
16require_once(CALENDAR_ROOT . 'Month/Weeks.php');
17require_once(CALENDAR_ROOT . 'Validator.php');
18require_once(CALENDAR_ROOT . 'Engine/Interface.php');
19require_once(CALENDAR_ROOT . 'Engine/UnixTs.php');
20require_once(CALENDAR_ROOT . 'Engine/PearDate.php');
21require_once(CALENDAR_ROOT . 'Table/Helper.php');
22require_once(CALENDAR_ROOT . 'Decorator/Textual.php');
23require_once(CALENDAR_ROOT . 'Decorator/Uri.php');
24require_once(CALENDAR_ROOT . 'Decorator/Weekday.php');
25require_once(CALENDAR_ROOT . 'Decorator/Wrapper.php');
26require_once(CALENDAR_ROOT . 'Util/Uri.php');
27require_once(CALENDAR_ROOT . 'Util/Textual.php');
28?>
Note: See TracBrowser for help on using the repository browser.