summaryrefslogtreecommitdiffstats
path: root/apps/media/templates/music.php
blob: 589d6b524755ef52854087b974cedc1dfbb7873f (plain)
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
<div class='player-controls' id="controls">
	<ul class="jp-controls">
		<li><a href="#" class="jp-play action"><img class="svg" alt="<?php echo $l->t('Play');?>" src="<?php echo OCP\image_path('core', 'actions/play-big.svg'); ?>" /></a></li>
		<li><a href="#" class="jp-pause action"><img class="svg" alt="<?php echo $l->t('Pause');?>" src="<?php echo OCP\image_path('core', 'actions/pause-big.svg'); ?>" /></a></li>
		<li><a href="#" class="jp-previous action"><img class="svg" alt="<?php echo $l->t('Previous');?>" src="<?php echo OCP\image_path('core', 'actions/play-previous.svg'); ?>" /></a></li>
		<li><a href="#" class="jp-next action"><img class="svg" alt="<?php echo $l->t('Next');?>" src="<?php echo OCP\image_path('core', 'actions/play-next.svg'); ?>" /></a></li>
		<li><a href="#" class="jp-mute action"><img class="svg" alt="<?php echo $l->t('Mute');?>" src="<?php echo OCP\image_path('core', 'actions/sound.svg'); ?>" /></a></li>
		<li><a href="#" class="jp-unmute action"><img class="svg" alt="<?php echo $l->t('Unmute');?>" src="<?php echo OCP\image_path('core', 'actions/sound-off.svg'); ?>" /></a></li>
	</ul>
	<div class="jp-progress">
		<div class="jp-seek-bar">
			<div class="jp-play-bar"></div>
		</div>
	</div>
	<div class="jp-current-time"></div>
	<div class="jp-duration"></div>
	<div class="jp-volume-bar">
		<div class="jp-volume-bar-value"></div>
	</div>
        <div class="jp-current-song"></div>

	<div class="player" id="jp-player"></div>

	<div id="scan">
		<input type="button" class="start" value="<?php echo $l->t('Rescan Collection')?>" />
		<input type="button" class="stop" style="display:none" value="<?php echo $l->t('Pause')?>" />
		<div id="scanprogressbar"></div>
	</div>
</div>

<ul id="leftcontent"></ul>

<div id="rightcontent">
<table id="collection">
	<thead>
		<tr>
			<th><?php echo $l->t('Artist')?></th>
			<th><?php echo $l->t('Album')?></th>
			<th><?php echo $l->t('Title')?></th>
		</tr>
	</thead>
	<tbody>
		<tr class="template">
			<td class="artist"><a></a></td>
			<td class="artist-expander"><a></a></td>
			<td class="album"><a></a></td>
			<td class="album-expander"><a></a></td>
			<td class="title"><a></a></td>
		</tr>
	</tbody>
</table>
</div>