Initial commit, dummy script using Sihnon Framework

This commit is contained in:
2010-10-10 17:15:56 +01:00
commit b59b99fcb9
3 changed files with 22 additions and 0 deletions

5
.gitignore vendored Normal file
View File

@@ -0,0 +1,5 @@
# Eclipse metadata
/.buildpath
/.project
/.settings/

4
private/.gitignore vendored Normal file
View File

@@ -0,0 +1,4 @@
config.php
dbconfig.conf
settings.txt

View File

@@ -0,0 +1,13 @@
<?php
require_once('../private/config.php');
require_once(Sihnon_Lib . 'Sihnon/Main.class.php');
try {
$main = Sihnon_Main::instance();
} catch (Sihnon_Exception $e) {
die("Uncaught " . get_class($e) . ": " . $e->getMessage());
}
?>