-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathinit.php
More file actions
21 lines (18 loc) · 809 Bytes
/
Copy pathinit.php
File metadata and controls
21 lines (18 loc) · 809 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
/**
* @version 0.90
* @package Atsumi.Framework
* @copyright Copyright(C) 2008, James A. Forrester-Fellowes. All rights reserved.
* @license GNU/GPL, see license.txt
* The Atsumi Framework is open-source software. This version may have been modified pursuant to
* the GNU General Public License, and as distributed it includes or is derivative of works
* licensed under the GNU General Public License or other free or open source software licenses.
* See copyright.txt for copyright notices and details.
*/
// Manually require the core components as loader is not initalised at this point
require_once(dirname(__FILE__).'/classes/core/loader/atsumi_Loader.php');
// Load everything else
atsumi_Loader::references(atsumi_Loader::getAtsumiDir(), 'core');
// Start atsumi
Atsumi::start();
?>