Initial commit

This commit is contained in:
NightBits
2018-12-19 20:44:16 +01:00
parent b680b82039
commit 878eda33b8
92 changed files with 5819 additions and 0 deletions

View File

@@ -0,0 +1 @@
deny from all

View File

@@ -0,0 +1,16 @@
<?php
$defaultController = 'login';
$defaultAction = 'start';
$language = 'english';
$controllerParameter = 'c';
$actionParameter = 'a';
$development = false;
$logErrors = true;
$urlParameters = false;
$sessionDatabase = false;
$libraries = array();
$helpers = array();
?>

View File

@@ -0,0 +1,12 @@
<?php
$applicationName = 'taskmanager';
$websiteTitle = 'SuperSmash Taskmanager';
$webmasterEmail = 'info@SuperSmash.nl';
$useDatabase = true;
// Include the database configuration file
include_once ('databaseconfiguration.php');
// Include the SuperSmash framework configuration file
include_once ('SuperSmashconfiguration.php');
?>

View File

@@ -0,0 +1,10 @@
<?php
$database = array(
'driver' => 'mysql',
'host' => 'localhost',
'database' => 'taskmanager',
'username' => 'root',
'password' => '',
'port' => '3306'
);
?>