Files
outil-82/templates/backOffice/default/includes/inner-form-toolbar.html
2021-01-19 18:19:37 +01:00

66 lines
3.3 KiB
HTML

{*
A toolbar displayed in forms, to display language change flags, submit and close buttons.
Parameters:
- hide_flags: true / false. If true, the flags will not be visible
- hide_submit_buttons: true / false. If true, only the close button will be displayed.
- hide_save_buttons: true / false. If true, the "Save" button will be hidden
- hide_save_and_close_button: true / false. If true, the "Save and close" button will be hidden
- show_currencies: true/false. If true, show the currency selection bar
- page_url: the current page URL. Default is $current_url. Used to switchedition anguage.
- close_url: no default. URL displayed when close button is clicked. If empty, the close button is not displayed.
-page_bottom: true/false. If true, the toolbar will have a style suitable for page bottom
*}
<div class="row inner-toolbar{if $page_bottom} inner-toolbar-bottom{/if}">
<div class="col-md-3 inner-actions">
{if $hide_flags != true}
<ul class="nav nav-pills">
{loop name="lang_list" type="lang" backend_context="1"}
<li {if $ID == $edit_language_id}class="active"{/if}>
{if $current_tab}
{$lang_url = {url path={$page_url|default:$current_url nofilter} edit_language_id=$ID current_tab=$current_tab}}
{else}
{$lang_url = {url path={$page_url|default:$current_url nofilter} edit_language_id=$ID}}
{/if}
<a class="language-change-button" data-language-id="{$ID}" href="{$lang_url nofilter}" title="{intl l='Edit information in %lng' lng={$TITLE}}">
<img src="{image file="assets/img/flags/$CODE.png"}" alt=$TITLE />
</a>
</li>
{/loop}
</ul>
{/if}
</div>
<div class="col-md-3 inner-actions">
{if $show_currencies == true}
<div class="row">
<div class="col-md-12">
<div class="button-group">
{loop name="currency_list" type="currency" backend_context="1"}
<a class="btn btn-sm {if $ID == $edit_currency_id}btn-primary{else}btn-default{/if}" href="{url noamp=1 path={$page_url|default:$current_url nofilter} edit_currency_id=$ID product_id=$product_id current_tab='prices'}" title="{intl l='Edit prices in %curr' curr={$NAME}}">
{$SYMBOL}
</a>
{/loop}
</div>
</div>
</div>
{/if}
</div>
<div class="col-md-6 inner-actions text-right">
{if $hide_submit_buttons != true}
{if $hide_save_buttons != true}
<button type="submit" name="save_mode" value="stay" class="form-submit-button btn btn-sm btn-default btn-success" title="{intl l='Save'}">{intl l='Save'} <span class="glyphicon glyphicon-ok"></span></button>
{/if}
{if $hide_save_and_close_button != true}
<button type="submit" name="save_mode" value="close" class="form-submit-button btn btn-sm btn-default btn-info" title="{intl l='Save and close'}">{intl l='Save and close'} <span class="glyphicon glyphicon-remove"></span></button>
{/if}
{/if}
{if ! empty($close_url)}
<a href="{$close_url nofilter}" class="page-close-button btn btn-sm btn-default">{intl l='Close'} <span class="glyphicon glyphicon-remove"></span></a>
{/if}
</div>
</div>