?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/schtroumpf.fr/modules/ets_superspeed/views/templates/hook/



?? Go up: /home/webdevt/www/schtroumpf.fr/modules/ets_superspeed/views/templates

?? Viewing: image_cleaner.tpl

{*
 * Copyright ETS Software Technology Co., Ltd
 *
 * NOTICE OF LICENSE
 *
 * This file is not open source! Each license that you purchased is only available for 1 website only.
 * If you want to use this file on more websites (or projects), you need to purchase additional licenses.
 * You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade PrestaShop to newer
 * versions in the future.
 *
 * @author ETS Software Technology Co., Ltd
 * @copyright  ETS Software Technology Co., Ltd
 * @license    Valid for 1 website (or project) for each purchase of license
*}
{if $image_category.total_image || $image_supplier.total_image || $image_manufacturer.total_image || $image_product.total_image}
    <div class="alert alert-warning">{l s='There are unused images taking space on your server. Those images can be cleared to save your hosting space. For safety, you are recommended to make a backup of img/ folder before clearing unused images.' mod='ets_superspeed'}</div>
    <ul>
        {if $image_category.total_image}
            <input type="hidden" value="1" name="unused_category_images"/>
            <li><label><b>{$image_category.total_image|intval}</b>&nbsp;{l s='unused category image(s)' mod='ets_superspeed'} {$image_category.total_size|escape:'html':'UTF-8'} </label></li>
        {/if} 
        {if $image_supplier.total_image}
            <input type="hidden" value="1" name="unused_supplier_images"/>
            <li><label><b>{$image_supplier.total_image|intval}</b>&nbsp;{l s='unused supplier image(s)' mod='ets_superspeed'} {$image_category.total_size|escape:'html':'UTF-8'} </label></li>
        {/if}
        {if $image_manufacturer.total_image}
            <input type="hidden" value="1" name="unused_manufacturer_images"/>
            <li><label><b>{$image_manufacturer.total_image|intval}</b>&nbsp;{l s='unused manufacturer image(s)' mod='ets_superspeed'} {$image_category.total_size|escape:'html':'UTF-8'} </label></li>
        {/if}
        {if $image_product.total_image}
            <input type="hidden" value="1" name="unused_product_images"/>
            <li><label><b>{$image_product.total_image|intval}</b>&nbsp;{l s='unused product image(s)' mod='ets_superspeed'} {$image_product.total_size|escape:'html':'UTF-8'} </label></li>
        {/if}   
    </ul>
    <button class="btn btn-default sp_cleaner_image"><i class="icon-trash"></i> {l s='Clear all unused images' mod='ets_superspeed'}</button>
{else}
    <div class="alert alert-info">
        {l s='Congratulations! Your website is good here. No unused images found. Nothing to do.' mod='ets_superspeed'}
    </div>
{/if}


??

??