PATH:
home
/
letacommog
/
letaweb
/
admin
/
modules
/
audio_player
<audio src="<?php echo $this->src; ?>" id="audio<?php echo $this->page_id; ?>" autoPlay="<?php echo $this->autoPlay ? 1 : 0; ?>" controls="<?php echo $this->controls ? 1 : 0; ?>"> </audio> <script type="text/javascript"> $(document).ready(function() { var player = new MediaElementPlayer('#audio<?php echo $this->page_id; ?>', { <?php if (!$this->controls) { echo "features:['playpause'],"; } ?> <?php if ($this->loop) { echo 'loop:true,'; } ?> <?php if (isset($this->volume)) { echo "startVolume:$this->volume,"; } ?> } ); <?php if ($this->autoPlay) { ?> player.play(); <?php } else { ?> player.pause(); <?php } ?> $('#audio<?php echo $this->page_id; ?>').data('player', player); }); </script>
[+]
..
[-] frontend_script.php
[edit]
[-] backend.js
[edit]
[-] backend.php
[edit]
[-] frontend_view.php
[edit]
[-] frontend_class.php
[edit]