forked from hestiacp/hestiacp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.html
More file actions
28 lines (26 loc) · 713 Bytes
/
header.html
File metadata and controls
28 lines (26 loc) · 713 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
27
28
<!doctype html>
<html lang="<?=$_SESSION['LANGUAGE']?>">
<head>
<?php
require $_SERVER['HESTIA'] . '/web/templates/includes/title.html';
require $_SERVER['HESTIA'] . '/web/templates/includes/css.html';
require $_SERVER['HESTIA'] . '/web/templates/includes/top_js.html';
?>
<script>
<?php
//
// GLOBAL SETTINGS
//
?>
var GLOBAL = {};
GLOBAL.FTP_USER_PREFIX = '';
GLOBAL.DB_USER_PREFIX = '';
GLOBAL.DB_DBNAME_PREFIX = '';
GLOBAL.AJAX_URL = '';
</script>
</head>
<body class="body-<?=strtolower($TAB)?> lang-<?=$_SESSION['language']?>">
<?php
if (($_SESSION['DEBUG_MODE']) == "true" ) {
require $_SERVER['HESTIA'] . '/web/templates/pages/debug_panel.html';
}