-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.php
More file actions
executable file
·75 lines (70 loc) · 2.63 KB
/
install.php
File metadata and controls
executable file
·75 lines (70 loc) · 2.63 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?php
define('ROOT', dirname(__FILE__) . '/install_assets/');
include_once ROOT."config.php";
include_once ROOT."api.php";
initInstaller();
?>
<!DOCTYPE html PUBLIC >
<html>
<head>
<title><?=$config['title']?></title>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<link href="install_assets/css/bootstrap.min.css" rel="stylesheet" type="text/css"/>
<link href="install_assets/css/font-awesome.min.css" rel="stylesheet" type="text/css"/>
<link href="install_assets/css/animations.css" rel="stylesheet" type="text/css"/>
<link href="install_assets/css/style.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div id="wrapper" class="wrapper">
<header class="header">
<div class='headerLogo'>
<img src="install_assets/css/images/logo.png" alt="Logiks Logo"/>
<h1><?=$config['title']?></h1>
</div>
</header>
<div id="page-wrapper">
<div class="container-fluid">
<div class="row">
<div id='breadcrumb' class="col-lg-8 rowPanel">
<ol class="breadcrumb">
<?php
foreach ($panelList as $key => $value) {
if($key==0) $title="<i class='fa fa-home'></i>";
else $title=trim(substr($value, 1));
//$title=str_replace("_", " ", trim(substr($value, 1)));
$title=str_replace("_", " ", $value);
if($key==0) echo "<li class='active visited'><a href='$value'>$title</a></li>";
else echo "<li><a href='$value'>$title</a></li>";
}
?>
</ol>
</div>
</div>
<div class="row">
<div id='dataPanel' class="col-lg-8 rowPanel content">
<h1>Please be patient, loading up the welcome page ....</h1>
</div>
</div>
<div class="row">
<div id='errorPanel' class="col-lg-8 rowPanel">
</div>
</div>
<div class="row">
<div id='toolPanel' class="col-lg-8 rowPanel">
<a class="btn btn-new" href="">Agree & Continue</a>
</div>
</div>
</div>
</div>
<footer>
<h5><?=$config['copyright']?></h5>
</footer>
</div>
</body>
<script src="install_assets/js/jquery.js"></script>
<script src="install_assets/js/bootstrap.min.js"></script>
<script src="install_assets/js/script.js"></script>
<script>
debug=<?=$_SESSION['debug']?>;
</script>
</html>