forked from Runalyze/Runalyze
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.php
More file actions
26 lines (21 loc) · 802 Bytes
/
install.php
File metadata and controls
26 lines (21 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
/**
* RUNALYZE
*
* @author Hannes Christiansen <mail@laufhannes.de>
* @copyright http://runalyze.laufhannes.de/
*
* With this file you are able to install RUNALYZE.
* Don't change anything in this file!
*/
require_once 'inc/html/class.Ajax.php';
require_once 'inc/system/class.PDOforRunalyze.php'; // TODO: Check if database class is really needed
require_once 'inc/system/class.DB.php'; // TODO: Check if database class is really needed
require_once 'inc/system/class.Request.php';
require_once 'inc/system/class.System.php';
require_once 'inc/class.Installer.php';
$Installer = new Installer();
$title = 'Installation: Runalyze '.RUNALYZE_VERSION;
include 'inc/tpl/tpl.installerHeader.php';
$Installer->display();
include 'inc/tpl/tpl.installerFooter.php';