1
0
mirror of https://github.com/agdsn/ancient-weatherstation.git synced 2026-06-19 23:07:59 +00:00

Makefile added

git-svn-id: file:///home/jan/tmp/wetterstation/trunk@128 dd492736-c11a-0410-ad51-8c26713eaf7f
This commit is contained in:
losinshi
2006-09-24 18:37:45 +00:00
parent 1ac67926cc
commit 2de37663da
8 changed files with 32 additions and 26 deletions
+8 -7
View File
@@ -1,10 +1,10 @@
<?
include_once("php_inc/module.inc.php");
include_once("php_inc/parser.inc.php");
include_once("php_inc/connection.inc.php");
include_once("php_inc/config.inc.php");
include_once("php_inc/chart.inc.php");
include_once("php_inc/report.inc.php");
include_once($path."php_inc/module.inc.php");
include_once($path."php_inc/parser.inc.php");
include_once($path."php_inc/connection.inc.php");
include_once($path."php_inc/config.inc.php");
include_once($path."php_inc/chart.inc.php");
include_once($path."php_inc/report.inc.php");
/* Klasse, die die ModuleSets Verwaltet */
@@ -30,9 +30,10 @@ class ModuleSet{
/* Dateinamen eines Setz aus dessen Namen zusammenbauen */
function _getSetFilename($setName){
global $path;
if($setName == "")
$setName = Config::getDefaultSet();
return "content/module_sets/set_".$setName.".html";
return $path."content/module_sets/set_".$setName.".html";
}
/* Parser Instanzieren (wenn noch nicht ist) und zurückgeben */