Files
drmaterac.pl/iadmin/themes/default/template/controllers/modules_positions/form.tpl
2025-03-21 20:24:43 +01:00

145 lines
6.0 KiB
Smarty

{**
* Copyright since 2007 PrestaShop SA and Contributors
* PrestaShop is an International Registered Trademark & Property of PrestaShop SA
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.md.
* It is also available through the world-wide-web at this URL:
* https://opensource.org/licenses/OSL-3.0
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to https://devdocs.prestashop.com/ for more information.
*
* @author PrestaShop SA and Contributors <contact@prestashop.com>
* @copyright Since 2007 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
*}
{**
* @deprecated since 1.7.6, to be removed in the next minor
*}
<div class="leadin">{block name="leadin"}{/block}</div>
<form action="{$url_submit|escape:'html':'UTF-8'}" id="{$table}_form" method="post" class="form-horizontal">
{if $display_key}
<input type="hidden" name="show_modules" value="{$display_key}" />
{/if}
<div class="panel">
<h3>
<i class="icon-paste"></i>
{l s='Transplant a module' d='Admin.Design.Feature'}
</h3>
<div class="form-group">
<label class="control-label col-lg-3 required"> {l s='Module' d='Admin.Global'}</label>
<div class="col-lg-9">
<select class="chosen" name="id_module" {if $edit_graft} disabled="disabled"{/if}>
{if !$hooks}
<option value="0" selected disabled>{l s='Please select a module' d='Admin.Design.Help'}</option>
{/if}
{foreach $modules as $module}
<option value="{$module->id|intval}"{if $id_module == $module->id || (!$id_module && $show_modules == $module->id)} selected="selected"{/if}>{$module->displayName|stripslashes}</option>
{/foreach}
</select>
</div>
</div>
<div class="form-group">
<label class="control-label col-lg-3 required"> {l s='Transplant to' d='Admin.Design.Feature'}</label>
<div class="col-lg-9">
<select name="id_hook"{if !$hooks|@count} disabled="disabled"{/if}>
{if !$hooks|@count}
<option value="0">{l s='Select a module above before choosing from available hooks' d='Admin.Design.Help'}</option>
{/if}
<optgroup id="hooks_unregistered" label="{l s='Available hooks' d='Admin.Design.Feature'}">
{foreach $hooks as $hook}
{if !$hook['registered']}
<option value="{$hook['id_hook']}" {if $id_hook == $hook['id_hook']} selected="selected"{/if}>{$hook['name']}{if $hook['name'] != $hook['title']} ({$hook['title']}){/if}{if isset($hook['description'])} ({$hook['description']|escape:'htmlall':'UTF-8'}){/if}</option>
{/if}
{/foreach}
</optgroup>
<optgroup id="hooks_registered" label="{l s='Already registered hooks' d='Admin.Design.Feature'}" disabled>
{foreach $hooks as $hook}
{if $hook['registered']}
<option value="{$hook['id_hook']}" {if $id_hook == $hook['id_hook']} selected="selected"{/if}>{$hook['name']}{if $hook['name'] != $hook['title']} ({$hook['title']}){/if}{if isset($hook['description'])} ({$hook['description']|escape:'htmlall':'UTF-8'}){/if}</option>
{/if}
{/foreach}
</optgroup>
</select>
</div>
</div>
<div class="form-group">
<label class="control-label col-lg-3">{l s='Exceptions' d='Admin.Design.Feature'}</label>
<div class="col-lg-9">
<div class="well">
<div>
{l s='Please specify the files for which you do not want the module to be displayed.' d='Admin.Design.Help'}<br />
{l s='Please input each filename, separated by a comma (",").' d='Admin.Design.Help'}<br />
{l s='You can also click the filename in the list below, and even make a multiple selection by keeping the Ctrl key pressed while clicking, or choose a whole range of filename by keeping the Shift key pressed while clicking.' d='Admin.Design.Help'}<br />
{if !$except_diff}
{$exception_list}
{else}
{foreach $exception_list_diff as $value}
{$value}
{/foreach}
{/if}
</div>
</div>
</div>
</div>
<div class="panel-footer">
{if $edit_graft}
<input type="hidden" name="id_module" value="{$id_module}" />
<input type="hidden" name="id_hook" value="{$id_hook}" />
<input type="hidden" name="new_hook" id="new_hook" value="{$id_hook}" />
{/if}
<button type="submit" name="{if $edit_graft}submitEditGraft{else}submitAddToHook{/if}" id="{$table}_form_submit_btn" class="btn btn-default pull-right"><i class="process-icon-save"></i> {l s='Save' d='Admin.Actions'}</button>
</div>
</div>
</form>
<script type="text/javascript">
//<![CDATA
function position_exception_textchange() {
// TODO : Add & Remove automatically the "custom pages" in the "em_list_x"
var obj = $(this);
var shopID = obj.attr('id').replace(/\D/g, '');
var list = obj.closest('form').find('#em_list_' + shopID);
var values = obj.val().split(',');
var len = values.length;
list.find('option').prop('selected', false);
for (var i = 0; i < len; i++)
list.find('option[value="' + $.trim(values[i]) + '"]').prop('selected', true);
}
function position_exception_listchange() {
var obj = $(this);
var shopID = obj.attr('id').replace(/\D/g, '');
var val = obj.val();
var str = '';
if (val)
str = val.join(', ');
obj.closest('form').find('#em_text_' + shopID).val(str);
}
$(document).ready(function(){
$('form[id="hook_module_form"] input[id^="em_text_"]').each(function(){
$(this).change(position_exception_textchange).change();
});
$('form[id="hook_module_form"] select[id^="em_list_"]').each(function(){
$(this).change(position_exception_listchange);
});
$('select[name=id_hook]').on('change', function() {
$('#new_hook').attr('value', $(this).val());
});
});
//]]>
</script>