summaryrefslogtreecommitdiffstats
path: root/main.inc.php
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2010-05-30 08:40:54 +0200
committerRemi Collet <fedora@famillecollet.com>2010-05-30 08:40:54 +0200
commitb2955d2b93937913334580dfad856e7b5c18c613 (patch)
treef788f81c482ba4c8aa9564a7d17c575c5f809ff5 /main.inc.php
parent2c61a7ac0a3cfc86f74031ba6ec41ea81d4a8fcc (diff)
parentcaa9d9178232885b7e02aab8be94e01e438cc1d7 (diff)
Merge branch 'master' of http://github.com/trasher/rpmphp
Diffstat (limited to 'main.inc.php')
-rw-r--r--main.inc.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/main.inc.php b/main.inc.php
new file mode 100644
index 0000000..a160604
--- /dev/null
+++ b/main.inc.php
@@ -0,0 +1,16 @@
+<?php
+require 'config.inc.php';
+require '/usr/share/php/Smarty/Smarty.class.php';
+
+$smarty = new Smarty();
+
+$smarty->template_dir = 'smarty/templates/rpmphp';
+$smarty->compile_dir = 'smarty/templates_c';
+$smarty->cache_dir = 'smarty/cache';
+$smarty->config_dir = 'smarty/configs';
+
+$ariane[] = array(
+ 'url' => './',
+ 'text' => 'Reports home'
+);
+?> \ No newline at end of file