PATH:
home
/
letacommog
/
letaweb
/
admin
/
modules
/
youtube
<?php class CWidgetYoutube extends CWidgetModule { public $videoid,$autoplay,$controlbar,$titlebar,$loop,$theme; protected function decodeData() { $data = $this->module_data; $this->videoid = getIndex($data, 'videoid', ''); $this->autoplay = getIndex($data, 'autoplay', false, 'boolean'); $this->controlbar = getIndex($data, 'controlbar', false, 'boolean'); $this->titlebar = getIndex($data, 'titlebar', false, 'boolean'); $this->loop = getIndex($data, 'loop', false, 'boolean'); $this->theme = getIndex($data, 'theme', false, 'boolean'); } }
[+]
..
[-] frontend_class.php
[edit]
[-] backend.php
[edit]
[-] frontend_view.php
[edit]
[-] backend.js
[edit]