mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-08-07 17:23:04 +02:00
add MultiView controller on admin page (replaces the "switch theme" button)
git-svn-id: http://piwigo.org/svn/trunk@29168 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
{strip}
|
||||
{combine_css path=$ADMINTOOLS_PATH|cat:'template/admin_style.css'}
|
||||
{combine_css path=$ADMINTOOLS_PATH|cat:'template/fontello/css/fontello-ato.css'}
|
||||
{combine_script id='admintools.controller' load='footer' require='jquery' path=$ADMINTOOLS_PATH|cat:'template/admin_controller.js'}
|
||||
{/strip}
|
||||
|
||||
{footer_script require='admintools.controller'}
|
||||
AdminTools.urlWS = '{$ROOT_URL}ws.php?format=json&method=';
|
||||
AdminTools.urlSelf = '{$ato.U_SELF}';
|
||||
|
||||
AdminTools.multiView = {
|
||||
view_as: {$ato.MULTIVIEW.view_as},
|
||||
theme: '{$themeconf.name}',
|
||||
lang: '{$ato.MULTIVIEW.lang}'
|
||||
};
|
||||
|
||||
{if $ato.DELETE_CACHE}
|
||||
AdminTools.deleteCache();
|
||||
{/if}
|
||||
AdminTools.init();
|
||||
{/footer_script}
|
||||
|
||||
<ul class="multiview">
|
||||
<li><label>{'View as'|translate}</label>
|
||||
<select class="switcher" data-type="view_as"></select>
|
||||
</li>
|
||||
<li><label>{'Theme'|translate}</label>
|
||||
<select class="switcher" data-type="theme"></select>
|
||||
</li>
|
||||
<li><label>{'Language'|translate}</label>
|
||||
<select class="switcher" data-type="lang"></select>
|
||||
</li>
|
||||
<li><a class="icon-check{if !$ato.MULTIVIEW.show_queries}-empty{/if}" href="{$ato.U_SELF}ato_show_queries={(int)!$ato.MULTIVIEW.show_queries}">{'Show SQL queries'|translate}</a></li>
|
||||
<li><a class="icon-check{if !$ato.MULTIVIEW.debug_l10n}-empty{/if}" href="{$ato.U_SELF}ato_debug_l10n={(int)!$ato.MULTIVIEW.debug_l10n}">{'Debug languages'|translate}</a></li>
|
||||
<li><a class="icon-check{if !$ato.MULTIVIEW.debug_template}-empty{/if}" href="{$ato.U_SELF}ato_debug_template={(int)!$ato.MULTIVIEW.debug_template}">{'Debug template'|translate}</a></li>
|
||||
<li><a class="icon-check{if !$ato.MULTIVIEW.template_combine_files}-empty{/if}" href="{$ato.U_SELF}ato_template_combine_files={(int)!$ato.MULTIVIEW.template_combine_files}">{'Combine JS&CSS'|translate}</a></li>
|
||||
<li><a class="icon-check{if $ato.MULTIVIEW.no_history}-empty{/if}" href="{$ato.U_SELF}ato_no_history={(int)!$ato.MULTIVIEW.no_history}">{'Save visit in history'|translate}</a></li>
|
||||
<li><a class="icon-ato-null" href="{$ato.U_SELF}ato_purge_template=1">{'Purge compiled templates'|translate}</a></li>
|
||||
</ul>
|
||||
Reference in New Issue
Block a user