-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmain.php
97 lines (84 loc) · 3.27 KB
/
main.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<?php
$graphLabels = array_keys($diffOccurrences);
$graphDiffOccurrences = array_values($diffOccurrences);
function getShortClassName($fqn)
{
$rectorClassName = explode('\\', $fqn);
return $rectorClassName[count($rectorClassName) - 1];
}
function htmlAppliedRector($fqn)
{
$shortClassName = getShortClassName($fqn);
return "<pre class='m-0'><code title='$fqn'>$shortClassName</code></pre>";
}
?>
<!doctype html>
<html lang="en" data-bs-theme="dark">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Rector Process Report</title>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ"
crossorigin="anonymous"
>
<link
rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/diff2html/bundles/css/diff2html.min.css"
/>
<script
type="text/javascript" src="https://cdn.jsdelivr.net/npm/diff2html/bundles/js/diff2html-ui.min.js"
></script>
<style>
<?php include 'style.css'?>
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg bg-body-tertiary">
<div class="container-fluid">
<a class="navbar-brand" href="#">Rector HTML Report</a> <small>Generated at <?= $reportGenerationDate ?></small>
</div>
</nav>
<div class="container-fluid my-3">
<script>
/**
* @param {Element} containerEl
*/
function enableCodeDiffOn(containerEl) {
containerEl.querySelectorAll('.code-diff-container').forEach(targetElement => {
const diffString = targetElement.dataset.content
var configuration = {
drawFileList: false,
fileListToggle: false,
fileListStartVisible: false,
fileContentToggle: false,
matching: 'lines',
outputFormat: 'side-by-side',
highlightLanguages: ['php'],
languages: 'php',
language: 'php',
synchronisedScroll: true,
highlight: true,
};
var diff2htmlUi = new Diff2HtmlUI(targetElement, diffString, configuration);
diff2htmlUi.draw();
diff2htmlUi.highlightCode();
})
}
</script>
<?php
include 'overview/main.php' ?>
<?php
include 'changes_by_file/main.php' ?>
</div>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe"
crossorigin="anonymous"
></script>
<?php
include 'footer.php';
?>
</body>
</html>