-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
52 lines (46 loc) · 1.86 KB
/
index.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
<?php require_once "core/inc.php"; ?>
<!DOCTYPE html>
<html>
<head>
<title>Php Project Analyser</title>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="assets/js/jquery-2.1.0.min.js" type="text/javascript"></script>
<script src="assets/js/tooltip.js" type="text/javascript"></script>
<script src="assets/js/bootstrap.min.js" type="text/javascript"></script>
<script src="assets/js/pa.js" type="text/javascript"></script>
<link rel="icon" href="assets/img/favicon.ico" />
<link href="assets/css/bootstrap.min.css" type="text/css" rel="stylesheet" />
<link href="assets/css/pa.css" type="text/css" rel="stylesheet" />
</head>
<body>
<div class="container-fluid">
<div class="row"><?php include('tpl/view/header.tpl.php'); ?></div>
<br>
<div class="row">
<div class="col-md-4"><?php include('tpl/view/quantite.tpl.php'); ?></div>
<div class="col-md-4"><?php include('tpl/view/qualite.tpl.php'); ?></div>
<div class="col-md-2">
<?php
include('tpl/view/lanceur.tpl.php');
include('tpl/view/btnDetail.tpl.php');
?>
</div>
<div class="col-md-2">
<?php include('tpl/view/lien.tpl.php');?>
</div>
</div>
<div class="row">
<?php include('tpl/view/detail.tpl.php'); ?>
</div>
</div>
</body>
<?php if($projectAnalyser->isAnalyzeInProgress()) { ?>
<script>
$('document').ready(function () {
refreshLanceur();
});
</script>
<?php } ?>
</html>