mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-08-10 18:53:01 +02:00
bug:2848
added two options for the slideshow ToDo lang var git-svn-id: http://piwigo.org/svn/trunk@23718 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
{combine_css path="themes/default/js/ui/theme/jquery.ui.button.css"}
|
||||
{combine_css path="themes/smartpocket/admin/jquery.ui.button.css"}
|
||||
{footer_script require='jquery.ui.button'}
|
||||
{literal}
|
||||
jQuery(document).ready(function(){
|
||||
jQuery( ".radio" ).buttonset();
|
||||
});
|
||||
{/literal}
|
||||
{/footer_script}
|
||||
|
||||
<div class="titrePage">
|
||||
<h2>{'Smartpocket, Configuration Page'|@translate}</h2>
|
||||
</div>
|
||||
<form method="post" class="properties" action="" ENCTYPE="multipart/form-data" name="form" class="properties">
|
||||
<div id="configContent">
|
||||
<fieldset>
|
||||
<legend>{'Slideshow Options'|@translate}</legend>
|
||||
<ul>
|
||||
<li class="radio" >
|
||||
<label for="loop"><span class="property">{'Loop the slideshow'|@translate}</span> </label>
|
||||
<input type="radio" id="loop_true" name="loop" value="true" {if $options.loop}checked="checked"{/if}><label for="loop_true">{'Yes'|@translate}</label>
|
||||
<input type="radio" id="loop_false" name="loop" value="false" {if !$options.loop}checked="checked"{/if}><label for="loop_false">{'No'|@translate}</label>
|
||||
</li>
|
||||
<li class="radio" >
|
||||
<label for="autohide"><span class="property">{'Autohide the bar of the slideshow'|@translate}</span> </label>
|
||||
<input type="radio" id="autohide_on" name="autohide" value="5000" {if $options.autohide==5000}checked="checked"{/if}><label for="autohide_on">{'Yes'|@translate}</label>
|
||||
<input type="radio" id="autohide_off" name="autohide" value="0" {if $options.autohide==0}checked="checked"{/if}><label for="autohide_off">{'No'|@translate}</label>
|
||||
</li>
|
||||
</ul>
|
||||
</fieldset>
|
||||
</div>
|
||||
<p>
|
||||
<input class="submit" type="submit" value="{'Submit'|@translate}" name="submit_smartpocket" />
|
||||
</p>
|
||||
</form>
|
||||
Reference in New Issue
Block a user