Server IP : 180.180.241.3 / Your IP : 216.73.216.252 Web Server : Microsoft-IIS/7.5 System : Windows NT NETWORK-NHRC 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586 User : IUSR ( 0) PHP Version : 5.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /AppServ/www/news/tmp/install_5320fcc93572d/media/widgets/mediaplayer/layouts/ |
Upload File : |
<li id="mediaplayer" data-name="Media Player"> <div class="info"> The Widgetkit Media Player is a HTML5 audio and video player completely built HTML and CSS. A Flash player fallback is included for all unsupported browsers. <a href="#" class="howtouse">How to use...</a> <div class="howtouse"> <p>Use the HTML5 <code>video</code> element to embed video in your website. For example:</p> <pre><<code>video</code> src="video.mp4" width="320" height="240"></<code>video</code>></pre> <p>You can also provide multiple sources, to add support for the different video formats like h.264, WebM or Ogg:</p> <pre><<code>video</code> width="320" height="240"> <source type="video/mp4" src="video.mp4" /> <source type="video/webm" src="video.webm" /> <source type="video/ogg" src="video.ogv" /> </<code>video</code>> </pre> <p>Use the HTML5 <code>audio</code> element to embed MP3 files in your website. For example:</p> <pre><<code>audio</code> src="audio.mp3" type="audio/mp3"></<code>audio</code>></pre> </div> </div> <div class="config"> <form method="post" action="<?php echo $this['system']->link(array('task' => 'config_mediaplayer', 'ajax' => true)); ?>"> <ul class="properties"> <li class="separator">Settings</li> <?php foreach ($xml->settings->setting as $setting) { $name = (string) 'mediaplayer_'.$setting->attributes()->name; $type = (string) $setting->attributes()->type; $label = (string) $setting->attributes()->label; $value = (string) $this['system']->options->has($name) ? $this['system']->options->get($name) : (string) $setting->attributes()->default; echo '<li>'; echo '<div class="wlabel">'.$label.'</div>'; echo '<div class="field">'.$this['field']->render($type, $name, $value, $setting).'</div>'; echo '<div class="description">'.$setting->attributes()->description.'</div>'; echo '</li>'; } ?> </ul> <p> <input type="submit" value="Save changes" class="button-primary"/><span></span> </p> </form> </div> </li>