File: //proc/self/cwd/nueva/admin346k89tef/themes/default/template/controllers/shop/helpers/form/form.tpl
{**
* 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)
*}
{extends file="helpers/form/form.tpl"}
{block name="input"}
{if $input.type == 'theme'}
{foreach $input.values as $theme}
<div class="col-lg-3 select_theme {if $theme->getName() == $fields_value.theme_name}select_theme_choice{/if}" onclick="$(this).find('input').attr('checked', true); $('.select_theme').removeClass('select_theme_choice'); $(this).toggleClass('select_theme_choice');">
<div class="radio">
<label>
<input type="radio" name="theme_name" value="{$theme->getName()|escape:'html':'UTF-8'}"{if $theme->getName() == $fields_value.theme_name} checked="checked"{/if} /> {$theme->getName()|escape:'html':'UTF-8'}
</label>
</div>
<div class="theme-container">
<img class="thumbnail" src="../{$theme->get('preview')|escape:'html':'UTF-8'}" />
</div>
</div>
{/foreach}
<div class="clear"> </div>
{elseif $input.type == 'textShopGroup'}
<p style="color: #000000; padding: 0px; font-size: 12px; margin-top: 4px;">{$input.value}</p>
{else}
{if $input.type == 'select' && $input.name == 'id_category'}
<script type="text/javascript">
$(document).ready(function(){
$('#id_category').change(function(){
doAdminAjax(
{
ajax: '1',
id_category : $(this).val(),
use_shop_context : 0,
action : 'getCategoriesFromRootCategory',
controller: 'AdminShop',
token : '{$token|escape:'html':'UTF-8'}',
},
function(res)
{
$('#categories-tree').parent().parent().html(res);
}
);
});
$('#id_category').trigger('change');
});
</script>
{/if}
{$smarty.block.parent}
{/if}
{/block}
{block name="other_fieldsets"}
{if isset($form_import)}
<div class="panel">
<h3><i class="icon-cloud-download"></i> {l s='Import data from another shop' d='Admin.Advparameters.Feature'}</h3>
{foreach $form_import as $key => $field}
<div class="form-group">
{if $key == 'radio'}
<label class="control-label col-lg-3">{$field.label}</label>
<div class="col-lg-2">
<span class="switch prestashop-switch">
<input type="radio" name="{$field.name}" id="{$field.name}_on" value="1" {if $field.value } checked="checked" {/if} />
<label for="{$field.name}_on">
{l s='Yes' d='Admin.Global'}
</label>
<input type="radio" name="{$field.name}" id="{$field.name}_off" value="0" {if !$field.value } checked="checked" {/if} />
<label for="{$field.name}_off">
{l s='No' d='Admin.Global'}
</label>
<a class="slide-button btn"></a>
</span>
</div>
{elseif $key == 'select'}
<div id="shop_list" {if !$checked}display:none{/if}>
<label class="control-label col-lg-3">{$field.label}</label>
<div class="col-lg-9">
<select name="{$field.name}" id="{$field.name}" >
{foreach $field.options.query AS $key => $option}
<option value="{$key}" {if $key == $defaultShop}selected="selected"{/if}>
{$option.name}
</option>
{/foreach}
</select>
</div>
</div>
{elseif $key == 'allcheckbox'}
<div id="data_list" {if !$checked}display:none{/if}>
<label class="control-label col-lg-3">{$field.label}</label>
<div class="col-lg-9 multiple-checkboxes">
{foreach $field.values as $key => $label}
<p class="checkbox"><input type="checkbox" name="importData[{$key}]" checked="checked" /> {$label}</p>
{/foreach}
</div>
</div>
{elseif $key == 'submit'}
<div class="col-lg-9">
<input type="submit" value="{$field.title}" name="submitAdd{$table}" class="btn btn-default{if isset($field.class)} {$field.class}{/if}" />
</div>
{/if}
</div>
{/foreach}
<div class="panel-footer">
<button type="submit" value="1" id="shop_form_submit_btn" name="submitAddshop" class="btn btn-default pull-right">
<i class="process-icon-save"></i> {l s='Save' d='Admin.Actions'}
</button>
<a href="{$currentIndex|escape:'html':'UTF-8'}&id_shop_group=0&token={$token|escape:'html':'UTF-8'}" class="btn btn-default" onclick="window.history.back();">
<i class="process-icon-cancel"></i> {l s='Cancel' d='Admin.Actions'}
</a>
</div>
</div>
{/if}
{/block}
{block name="script"}
var ids_category = new Array();
{foreach $ids_category as $key => $id_category}
ids_category[{$key}] = {$id_category};
{/foreach}
$(document).ready(function() {
$('input[name=useImportData]').click(function() {
if ($(this).attr('id') == 'useImportData_on')
{
$('input[name^="importData["]').prop('checked', true);
$('#shop_list, #data_list').slideDown('slow');
}
else
{
$('input[name^="importData["]').prop('checked', false);
$('#shop_list, #data_list').slideUp('slow');
}
});
$('#id_category, #importFromShop').change(function(){
shop_id = $('#importFromShop').val();
category_id = $('#id_category').val();
if (ids_category[shop_id] != category_id)
disableProductsDuplication();
else
enableProductsDuplication();
});
});
function disableProductsDuplication()
{
$('input[name="importData[product_attribute]"], input[name="importData[image]"], input[name="importData[product]"], input[name="importData[stock_available]"], input[name="importData[discount]"]').removeAttr('checked').attr('disabled', 'disabled');
}
function enableProductsDuplication()
{
$('input[name="importData[product_attribute]"], input[name="importData[image]"], input[name="importData[product]"], input[name="importData[stock_available]"], input[name="importData[discount]"]').removeAttr('disabled').attr('checked', 'checked');
}
{/block}