12 lines
340 B
PHP
12 lines
340 B
PHP
<?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');
|
|
?>
|