TreeRequireClass.netz.coop.inc.php
2.33 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php
/**
* @file TreeRequireClass.netz.coop.inc.php
* @category freeSN
* @mailto code [at] netz.coop
* @version 0.4.200901
* @link http://netz.coop
*
* @copyright Copyright by netz.coop e.G. 2015
*
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
/**
* Hier werden alle Baum abhängigen Klassen, wenn sie benötigt werden, geladen
*
* @filesource RequireClass.php
* @copyright Copyright netz.coop; 2007
* @mailto dev [at] netz.coop
* @link losp.netz.coop (Entwickler Seite von losp)
*/
//$GLOBALS['class'][''] = $_LOSPDIR . 'include/Forest/'.$_TREE.'/php/class_*.inc.php';
$GLOBALS['class']['SocialMovement'] = $_LOSPDIR . 'include/Forest/'.$_TREE.'/php/SocialMovement/class_SocialMovement.inc.php';
$GLOBALS['class']['IndirectManager'] = $_LOSPDIR . 'include/Forest/'.$_TREE.'/php/SocialMovement/class_IndirectManager.inc.php';
$GLOBALS['class']['DirectManager'] = $_LOSPDIR . 'include/Forest/'.$_TREE.'/php/SocialMovement/class_DirectManager.inc.php';
$GLOBALS['class']['Culture'] = $_LOSPDIR . 'include/Forest/'.$_TREE.'/php/Culture/class_Culture.inc.php';
$GLOBALS['class']['CultureIndirectManager'] = $_LOSPDIR . 'include/Forest/'.$_TREE.'/php/Culture/class_CultureIndirectManager.inc.php';
$GLOBALS['class']['CultureDirectManager'] = $_LOSPDIR . 'include/Forest/'.$_TREE.'/php/Culture/class_CultureDirectManager.inc.php';
$GLOBALS['class']['Economy'] = $_LOSPDIR . 'include/Forest/'.$_TREE.'/php/Economy/class_Economy.inc.php';
$GLOBALS['class']['EconomyIndirectManager'] = $_LOSPDIR . 'include/Forest/'.$_TREE.'/php/Economy/class_EconomyIndirectManager.inc.php';
$GLOBALS['class']['EconomyDirectManager'] = $_LOSPDIR . 'include/Forest/'.$_TREE.'/php/Economy/class_EconomyDirectManager.inc.php';
?>