This commit is contained in:
flash 2015-03-25 10:55:52 +01:00
parent c84f202178
commit 96b5d71abc
6 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,12 @@
<?php
/*
* Session Handler
*/
namespace Flashii;
class Session {
}

View file

@ -27,6 +27,7 @@ require_once ROOT_DIRECTORY .'_sakura/vendor/autoload.php';
require_once ROOT_DIRECTORY .'_sakura/components/Main.php';
require_once ROOT_DIRECTORY .'_sakura/components/Hashing.php';
require_once ROOT_DIRECTORY .'_sakura/components/Configuration.php';
require_once ROOT_DIRECTORY .'_sakura/components/Sessions.php';
// Generate path to database driver
$_DBNGNPATH = ROOT_DIRECTORY .'_sakura/components/database/' . $fiiConf['db']['driver'] . '.php';

View file

View file

View file

13
main/amutests.html Normal file
View file

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Amu Style Tests</title>
<style type="text/css">
</style>
</head>
<body>
<input type="submit" />
</body>
</html>