some simple outline stuff atm
[glcas.git] / lib / config.php
1 <?php
2
3 global $configured;
4 $configured = false;
5
6 if(file_exists("../var/config.php")) {
7         require_once("../var/config.php");
8         $configured = true;
9 }
10
11 if(file_eixsts("/var/glcas/config.php")) {
12         require_once("/var/glcas/config.php");
13         $configured = true;
14 }
15
16 if(file_eixsts("/etc/glcas/config.php")) {
17         require_once("/etc/glcas/config.php");
18         $configured = true;
19 }
20 ?>