PATH:
home
/
letacommog
/
letaweb
/
admin
/
modules
/
youtube
<div class="video"> <iframe src="http://www.youtube.com/embed/<?php echo $this->videoid;?>?wmode=opaque&autoplay=<?php echo($this->autoplay == true ? 1 : 0); ?>&controls=<?php echo($this->controlbar == true ? 1 : 0); ?>&loop=<?php echo($this->loop == true ? 1 : 0); ?>&showinfo=<?php echo($this->titlebar == true ? 1 : 0); ?>&theme=<?php echo($this->theme == true ? 'light' : 'dark'); ?>" frameborder="0" allowfullscreen></iframe> </div> <script type="text/javascript"> $(document).ready(function() { var width = $("#<?php echo $this->page_id; ?>").width(); var height = width * 9 /16; $("#<?php echo $this->page_id; ?> iframe").height(height); }); $(window).resize(function() { var width = $("#<?php echo $this->page_id; ?>").width(); var height = width * 9 /16; $("#<?php echo $this->page_id; ?> iframe").height(height); }); </script>
[+]
..
[-] frontend_class.php
[edit]
[-] backend.php
[edit]
[-] frontend_view.php
[edit]
[-] backend.js
[edit]