-
Notifications
You must be signed in to change notification settings - Fork 31
/
index.php
62 lines (45 loc) · 1.42 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
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html>
<head>
<title>PHPCheckstyle Web Interface</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body>
<h1><img src="./html/images/Logo_phpcheckstyle.png"/> PHPCheckstyle</h1>
<form name="myform" action="runFromWeb.php" method="POST">
<table>
<tr>
<td>File(s) to analyse <span style="color:red">*</span></td>
<td><input type="text" id="sourceDir" name="sourceDir" value="./test"></input></td>
</tr>
<tr>
<td>Destination directory</td>
<td><input type="text" id="resultDir" name ="resultDir" value="./checkstyle_result"></input></td>
</tr>
<tr>
<td>Configuration file</td>
<td><input type="text" id="configFile" name ="configFile" value="default.cfg.xml"></input></td>
</tr>
<tr>
<td>Exclude Files or Directories <span style="color:red">*</span></td>
<td><input type="text" id="excludeFile" name ="excludeFile" value=""></input></td>
</tr>
<tr>
<td>Language</td>
<td>
<input type="select" id="lang" name ="lang">
<option value="en-us">English</option>
<option value="fr-fr">Français</option>
</input>
</td>
</tr>
</table>
<br/>
<br/>
<input type="submit" value="Run"></input>
<br/>
<br/>
</form>
<i><span style="color:red">*</span> Multiple filenames or directory names can be added, comma separated.</i>
</body>
</html>