-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
69 lines (66 loc) · 3.33 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
63
64
65
66
67
68
69
<?php
$page = "plugins-VBAN-Wolfson";
?>
<div class="col-md-8">
<h3 class="mb-5">
Wolfson / Cirrus plugin
</h3>
<form role="form" action="plugin_action.php" method="get" class="mb-5">
<div class="form-group">
<label>Output :</label>
<div class="btn-group btn-group-toggle" data-toggle="buttons">
<label class="btn btn-secondary">
<input type="radio" name="args" id="option1" autocomplete="off" value="output Headset"> Headset
</label>
<label class="btn btn-secondary">
<input type="radio" name="args" id="option2" autocomplete="off" value="output Lineout"> Line Out
</label>
<label class="btn btn-secondary">
<input type="radio" name="args" id="option3" autocomplete="off" value="output SPDIF"> SPDIF
</label>
<label class="btn btn-secondary">
<input type="radio" name="args" id="option4" autocomplete="off" value="output Speakers"> Speakers
</label>
</div>
</div>
<input type="hidden" name="name" value="VBAN-Wolfson" />
<button type="submit" class="btn btn-primary">
Change
</button>
</form>
<form role="form" action="plugin_action.php" method="get" class="mb-5">
<div class="form-group">
<label>Input :</label>
<div class="btn-group btn-group-toggle" data-toggle="buttons">
<label class="btn btn-secondary">
<input type="radio" name="args" id="option1" autocomplete="off" value="input Headset"> Headset
</label>
<label class="btn btn-secondary">
<input type="radio" name="args" id="option2" autocomplete="off" value="input Linein"> Line In
</label>
<label class="btn btn-secondary">
<input type="radio" name="args" id="option3" autocomplete="off" value="input SPDIF"> SPDIF
</label>
<label class="btn btn-secondary">
<input type="radio" name="args" id="option4" autocomplete="off" value="input DMIC"> DMIC (onboard mic)
</label>
<label class="btn btn-secondary">
<input type="radio" name="args" id="option5" autocomplete="off" value="input Micbias"> Micbias
</label>
</div>
</div>
<input type="hidden" name="name" value="VBAN-Wolfson" />
<button type="submit" class="btn btn-primary">
Change
</button>
</form>
<form role="form" action="plugin_action.php" method="get">
<div class="form-group">
<input type="hidden" name="name" value="VBAN-Wolfson" />
<input type="hidden" name="args" value="reset" />
<button type="submit" class="btn btn-danger">
Reset all
</button>
</div>
</form>
</div>