summaryrefslogtreecommitdiffstats
path: root/application/views/file/fragments/audio-player.php
blob: 5175060393b9b05c9b351979923597d4346b8529 (plain)
1
2
3
4
5
6
7
8
<div class="container-wide">
<p>
	<audio controls="controls">
		<source src="<?php echo site_url($filedata["id"]); ?>">
	</audio>
	<?php echo anchor(site_url($filedata['id']), htmlspecialchars($filedata["filename"])); ?>
</p>
</div>