-
Notifications
You must be signed in to change notification settings - Fork 2
/
footer.php
33 lines (32 loc) · 885 Bytes
/
footer.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
<?php
if (!isset ($settings)) {
require_once "hvp-settings.class.php";
$settings = new Hvp\Settings ();
$video_backend = $settings->get_value ("/general/video-backend");
}
else {
$video_backend = $settings->get_value ("/general/video-backend");
}
?>
<ul>
<li><a href="index.php">Player</a></li>
<li><a href="playlist.php">Playlist</a></li>
<li><a href="admin.php">Administration</a></li>
<?php
if ($video_backend == "HTML5") {
?>
<li><a href="http://www.divx.com/en/software/divx-plus/web-player">Get DivX Plus Web Player</a></li>
<?php
}
else if ($video_backend == "VLC") {
?>
<li><a href="http://www.videolan.org/vlc/">Get VLC media player</a></li>
<?php
}
else if ($video_backend == "WMP") {
?>
<li><a href="http://windows.microsoft.com/en-US/windows/products/windows-media-player">Get Windows Media Player</a></li>
<?php
}
?>
</ul>