classes
12 years ago
lib
12 years ago
styles
12 years ago
init.php
12 years ago
license.txt
12 years ago
loader.php
12 years ago
loader.php
33 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Framework Loader. |
| 4 | * This file MUST always be included at startup when using the framework. |
| 5 | * |
| 6 | * @version $Rev: 203758 $ |
| 7 | * @author Jordi Canals |
| 8 | * @copyright Copyright (C) 2008, 2009, 2010 Jordi Canals |
| 9 | * @license GNU General Public License version 2 |
| 10 | * @link http://alkivia.org |
| 11 | * @package Alkivia |
| 12 | * @subpackage Framework |
| 13 | * |
| 14 | |
| 15 | Copyright 2008, 2009, 2010 Jordi Canals <devel@jcanals.cat> |
| 16 | |
| 17 | This program is free software; you can redistribute it and/or |
| 18 | modify it under the terms of the GNU General Public License |
| 19 | version 2 as published by the Free Software Foundation. |
| 20 | |
| 21 | This program is distributed in the hope that it will be useful, |
| 22 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 23 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 24 | GNU General Public License for more details. |
| 25 | |
| 26 | You should have received a copy of the GNU General Public License |
| 27 | along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 28 | */ |
| 29 | |
| 30 | // Define the framework path. |
| 31 | define ('AKK_FRAMEWORK', dirname(__FILE__) ); |
| 32 | include_once( AKK_FRAMEWORK . '/init.php'); |
| 33 |