| Current Path : /var/www/iplanru/data/www/www.i-plan.ru/media/widgetkit/widgets/mediaplayer/layouts/ | 
| Current File : /var/www/iplanru/data/www/www.i-plan.ru/media/widgetkit/widgets/mediaplayer/layouts/dashboard.php | 
<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>