forked from EyesOfNetworkCommunity/eonweb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
75 lines (66 loc) · 2.69 KB
/
header.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
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
/*
#########################################
#
# Copyright (C) 2016 EyesOfNetwork Team
# DEV NAME : Quentin HOARAU
# VERSION : 5.0
# APPLICATION : eonweb for eyesofnetwork project
#
# LICENCE :
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
#########################################
*/
# Global parameters
include("include/config.php");
include("include/arrays.php");
include("include/function.php");
?>
<!DOCTYPE html>
<html>
<head>
<title>EyesOfNetwork</title>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="EyesOfNetwork">
<meta name="author" content="EyesOfNetwork Team">
<link rel="icon" type="image/png" href="/images/favicon.png">
<!-- Bootstrap Core CSS -->
<link href="/bower_components/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- MetisMenu CSS -->
<link href="/bower_components/metisMenu/dist/metisMenu.min.css" rel="stylesheet">
<!-- DataTables CSS -->
<link href="/bower_components/datatables-plugins/integration/bootstrap/3/dataTables.bootstrap.css" rel="stylesheet">
<!-- DataTables Responsive CSS -->
<link href="/bower_components/datatables-responsive/css/dataTables.responsive.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="/bower_components/startbootstrap-sb-admin-2/dist/css/sb-admin-2.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="/bower_components/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<!-- jQuery CSS -->
<link href="/bower_components/jquery-ui/themes/base/jquery-ui.min.css" rel="stylesheet">
<!-- DateRangePicker CSS -->
<link href="/bower_components/bootstrap-daterangepicker/daterangepicker.css" rel="stylesheet">
<!-- BootstrapSelect CSS -->
<link href="/bower_components/bootstrap-select/dist/css/bootstrap-select.min.css" rel="stylesheet">
<!-- EonWeb Custom CSS -->
<link href="/css/eonweb.css" rel="stylesheet">
<?php
$module_path=basename(dirname($_SERVER["PHP_SELF"]));
$module_css=$module_path.".css";
if(file_exists($module_css)) {
?><!-- EonWeb Module CSS -->
<link href="<?php echo $module_css; ?>" rel="stylesheet">
<?php } ?>
</head>
<body>
<div id="wrapper">