mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-07-05 17:32:25 +02:00
41d5c8a258
For these pages : picture modify, album notification, category permission, comments, menubar, all configurations, site update, element set ranks, notification by mail Change how success and errors messages are displayed and handled
82 lines
2.6 KiB
Smarty
82 lines
2.6 KiB
Smarty
{combine_script id='common' load='footer' path='admin/themes/default/js/common.js'}
|
|
|
|
{footer_script require='jquery.ui.sortable'}{literal}
|
|
jQuery(document).ready(function(){
|
|
jQuery(".menuPos").hide();
|
|
jQuery(".drag_button").show();
|
|
jQuery(".menuLi").css("cursor","move");
|
|
jQuery(".menuUl").sortable({
|
|
axis: "y",
|
|
opacity: 0.8
|
|
});
|
|
jQuery("input[name^='hide_']").click(function() {
|
|
men = this.name.split('hide_');
|
|
if (this.checked) {
|
|
jQuery("#menu_"+men[1]).addClass('menuLi_hidden');
|
|
} else {
|
|
jQuery("#menu_"+men[1]).removeClass('menuLi_hidden');
|
|
}
|
|
});
|
|
jQuery("#menuOrdering").submit(function(){
|
|
ar = jQuery('.menuUl').sortable('toArray');
|
|
for(i=0;i<ar.length;i++) {
|
|
men = ar[i].split('menu_');
|
|
document.getElementsByName('pos_' + men[1])[0].value = i+1;
|
|
}
|
|
});
|
|
});
|
|
{/literal}{/footer_script}
|
|
|
|
{html_style}
|
|
.font-checkbox i {
|
|
margin-left:5px;
|
|
}
|
|
{/html_style}
|
|
|
|
<form id="menuOrdering" action="{$F_ACTION}" method="post">
|
|
<ul class="menuUl">
|
|
{foreach from=$blocks item=block name="block_loop"}
|
|
<li class="menuLi {if $block.pos<0}menuLi_hidden{/if}" id="menu_{$block.reg->get_id()}">
|
|
<p>
|
|
<span>
|
|
<label class="font-checkbox"><strong>{'Hide'|@translate}</strong><i class="icon-check"></i><input type="checkbox" name="hide_{$block.reg->get_id()}" {if $block.pos<0}checked="checked"{/if}></label>
|
|
</span>
|
|
|
|
<img src="{$themeconf.admin_icon_dir}/cat_move.png" class="drag_button" style="display:none;" alt="{'Drag to re-order'|@translate}" title="{'Drag to re-order'|@translate}">
|
|
<strong>{$block.reg->get_name()|@translate}</strong> ({$block.reg->get_id()})
|
|
</p>
|
|
|
|
{if $block.reg->get_owner() != 'piwigo'}
|
|
<p class="menuAuthor">
|
|
{'Author'|@translate}: <i>{$block.reg->get_owner()}</i>
|
|
</p>
|
|
{/if}
|
|
|
|
<p class="menuPos">
|
|
<label>
|
|
{'Position'|@translate} :
|
|
<input type="text" size="4" name="pos_{$block.reg->get_id()}" maxlength="4" value="{math equation="abs(pos)" pos=$block.pos}">
|
|
</label>
|
|
</p>
|
|
</li>
|
|
{/foreach}
|
|
</ul>
|
|
<div class="savebar-footer">
|
|
<div class="savebar-footer-start">
|
|
</div>
|
|
<div class="savebar-footer-end">
|
|
{if isset($save_success)}
|
|
<div class="savebar-footer-block">
|
|
<div class="badge info-message">
|
|
<i class="icon-ok"></i>{$save_success}
|
|
</div>
|
|
</div>
|
|
{/if}
|
|
<div class="savebar-footer-block">
|
|
<button class="buttonLike" type="submit" name="submit" {if $isWebmaster != 1}disabled{/if}><i class="icon-floppy"></i> {'Save Settings'|@translate}</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</form>
|