forked from devsecopsmaturitymodel/DevSecOps-MaturityModel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspiderweb.php
36 lines (36 loc) · 931 Bytes
/
spiderweb.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
<?php
$title = "Identification of the degree of the implementation";
include_once "head.php";
?>
<body>
<?php
include_once "data.php";
include_once "navi.php";
echo "<h1>$title</h1>"
?>
<div class="spiderweb">
<div class="chart" id="energychart"></div>
<?php
echo getTable($dimensions);
?>
</div>
<script src="https://d3js.org/d3.v3.min.js"></script>
<script src="js/circularHeatChart.js"></script>
<script src="js/example.js"></script>
<script src="https://yandex.st/highlightjs/7.3/highlight.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<script>
loadDiagramm();
$("table a").click(function (e) {
e.preventDefault();
$(this).toggleClass("selected")
var url = "spiderwebData.php?element=" + $(this).attr("data-element");
$.ajax({
url: url,
}).done(function () {
loadDiagramm()
});
});
</script>
</body>
</html>