371acd1f43
git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@10095 b9a71923-0436-4b27-9f14-aed3839534dd
113 lines
4.0 KiB
Smarty
113 lines
4.0 KiB
Smarty
{*
|
|
* 2007-2011 PrestaShop
|
|
*
|
|
* NOTICE OF LICENSE
|
|
*
|
|
* This source file is subject to the Academic Free License (AFL 3.0)
|
|
* that is bundled with this package in the file LICENSE.txt.
|
|
* It is also available through the world-wide-web at this URL:
|
|
* http://opensource.org/licenses/afl-3.0.php
|
|
* 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 http://www.prestashop.com for more information.
|
|
*
|
|
* @author PrestaShop SA <contact@prestashop.com>
|
|
* @copyright 2007-2011 PrestaShop SA
|
|
* @version Release: $Revision$
|
|
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
|
* International Registered Trademark & Property of PrestaShop SA
|
|
*}
|
|
|
|
<div class="toolbarBox">
|
|
{if $show_toolbar}
|
|
{include file="toolbar.tpl" toolbar_btn=$toolbar_btn}
|
|
<div class="pageTitle">
|
|
<h3>{block name=pageTitle}
|
|
<span id="current_obj" style="font-weight: normal;">{$title|default:' '}</span>
|
|
{/block}</h3>
|
|
</div>
|
|
{/if}
|
|
</div>
|
|
<form action="{$url_submit}" id={$table}_form method="post">
|
|
{if $display_key}
|
|
<input type="hidden" name="show_modules" value="{$display_key}" />
|
|
{/if}
|
|
<fieldset>
|
|
<legend><img src="../img/t/AdminModulesPositions.gif" />{l s='Transplant a module'}</legend>
|
|
<label>{l s='Module'} :</label>
|
|
<div class="margin-form">
|
|
<select name="id_module" {if $edit_graft} disabled="disabled"{/if}>
|
|
{foreach $modules as $module}
|
|
<option value="{$module->id}" {if $id_module == $module->id || (!$id_module && $show_modules == $module->id)}selected="selected"{/if}>{$module->displayName|stripslashes}</option>
|
|
{/foreach}
|
|
</select><sup> *</sup>
|
|
</div>
|
|
<label>{l s='Hook into'} :</label>
|
|
<div class="margin-form">
|
|
<select name="id_hook" {if $edit_graft} disabled="disabled"{/if}>
|
|
{foreach $hooks as $hook}
|
|
<option value="{$hook['id_hook']}" {if $id_hook == $hook['id_hook']} selected="selected"{/if}>{$hook['title']}</option>
|
|
{/foreach}
|
|
</select><sup> *</sup>
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
//<![CDATA
|
|
function position_exception_add(shopID)
|
|
{
|
|
var listValue = $('#em_list_'+shopID).val();
|
|
var inputValue = $('#em_text_'+shopID).val();
|
|
var r = new RegExp('(^|,) *'+listValue+' *(,|$)');
|
|
if (!r.test(inputValue))
|
|
$('#em_text_'+shopID).val(inputValue + ((inputValue.trim()) ? ', ' : '') + listValue);
|
|
}
|
|
|
|
function position_exception_remove(shopID)
|
|
{
|
|
var listValue = $('#em_list_'+shopID).val();
|
|
var inputValue = $('#em_text_'+shopID).val();
|
|
var r = new RegExp('(^|,) *'+listValue+' *(,|$)');
|
|
if (r.test(inputValue))
|
|
{
|
|
var rep = '';
|
|
if (new RegExp(', *'+listValue+' *,').test(inputValue))
|
|
$('#em_text_'+shopID).val(inputValue.replace(r, ','));
|
|
else if (new RegExp(listValue+' *,').test(inputValue))
|
|
$('#em_text_'+shopID).val(inputValue.replace(r, ''));
|
|
else
|
|
$('#em_text_'+shopID).val(inputValue.replace(r, ''));
|
|
}
|
|
}
|
|
//]]>
|
|
</script>
|
|
|
|
<label>{l s='Exceptions'} :</label>
|
|
<div class="margin-form">
|
|
{if !$except_diff}
|
|
{$exception_list}
|
|
{else}
|
|
{foreach $exception_list_diff as $value}
|
|
{$value}
|
|
{/foreach}
|
|
{/if}
|
|
{l s='Please specify those files for which you do not want the module to be displayed'}.<br />
|
|
{l s='Please type each filename separated by a comma'}.
|
|
<br /><br />
|
|
</div>
|
|
|
|
<div class="margin-form">
|
|
{if $edit_graft}
|
|
<input type="hidden" name="id_module" value="{$id_module}" />
|
|
<input type="hidden" name="id_hook" value="{$id_hook}" />
|
|
{/if}
|
|
<input type="submit" value="{l s='Save'}" name="{if $edit_graft}submitEditGraft{else}submitAddToHook{/if}" id="{$table}_form_submit_btn" class="button" />
|
|
</div>
|
|
<div class="small"><sup>*</sup> {l s='Required field'}</div>
|
|
</fieldset>
|
|
</form> |