Subversion-Projekte lars-tiefland.niewerth

Revision

Revision 9 | Details | Vergleich mit vorheriger | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
2 lars 1
<?php
1 lars 2
	//Smarty
4 lars 3
	require_once("smarty/libs/Smarty.class.php");
1 lars 4
	$smarty=new Smarty;
5
	$smarty->assign("error",false);
6
	$smarty->assign("save",false);
7
	$smarty->assign("upd",false);
8
	$smarty->assign("meld","");
9
	$smarty->assign("h1","");
10
	$smarty->assign("mode","");
11
	$smarty->assign("db_meld","");
12
	$smarty->assign("id",0);
13
	$smarty->assign("disabled2","");
14
 
5 lars 15
	//PEAR Packages
16
	require_once("Config.php");
9 lars 17
	require_once("MDB2.php");
7 lars 18
	require_once('Calendar/Month/Weekdays.php');
12 lars 19
	require_once('Calendar/Month/Weeks.php');
7 lars 20
	require_once("Calendar/Week.php");
21
	require_once("Calendar/Decorator/Textual.php");
22
	require_once("Calendar/Decorator/Uri.php");
5 lars 23
 
1 lars 24
	//DB Connection
25
	require_once("connect.php");
26
 
2 lars 27
	//
1 lars 28
	require_once("functions.php");
2 lars 29
	require_once("an.class.php");
30
	require_once("firma.class.php");
31
	require_once("termine.class.php");
1 lars 32
?>