-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcore.php
46 lines (35 loc) · 888 Bytes
/
core.php
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
<?php
include 'config.php';
$config = include 'config.php';
require 'src/Account.php';
$accountName = Account::name($cpanel);
$putanja = '/home/' . $accountName;
session_start();
function head()
{
include 'config.php';
$config = include 'config.php';
?>
<link href="https://use.fontawesome.com/releases/v5.15.4/css/all.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/v/bs/jszip-2.5.0/dt-1.11.4/b-2.2.2/b-html5-2.2.2/r-2.2.9/datatables.min.css"/>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<body class="hold-transition skin-purple sidebar-mini fixed">
<div class="wrapper">
<?php
}
function footer()
{
print $acc;
?>
<footer class="main-footer">
<strong>© <?php
echo date("Y");
print $accountName;
?> </strong>
</footer>
</div>
</body>
</html>
<?php
}
?>