-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbootstrap.php
More file actions
25 lines (23 loc) · 849 Bytes
/
bootstrap.php
File metadata and controls
25 lines (23 loc) · 849 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
/**
* Calendar
*
* The Package of calendar.
*
* @package Calendar
* @version 1.0
* @author hackoh
* @license MIT License
* @link http://github.com/hackoh
*/
Autoloader::add_core_namespace('Calendar');
Autoloader::add_classes(array(
'Calendar\\Calendar' => __DIR__.'/classes/calendar.php',
'Calendar\\Calendar_Cell' => __DIR__.'/classes/calendar/cell.php',
'Calendar\\Calendar_Cell_Year' => __DIR__.'/classes/calendar/cell/year.php',
'Calendar\\Calendar_Cell_Month' => __DIR__.'/classes/calendar/cell/month.php',
'Calendar\\Calendar_Cell_Week' => __DIR__.'/classes/calendar/cell/week.php',
'Calendar\\Calendar_Cell_Day' => __DIR__.'/classes/calendar/cell/day.php',
'Calendar\\Controller_Calendar' => __DIR__.'/classes/controller/calendar.php',
));
Config::load(dirname(__FILE__).DS.'config/config.php');