Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.119
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html /
asiafoodco.com /
shop /
prestashop /
js /
Delete
Unzip
Name
Size
Permission
Date
Action
cropper
[ DIR ]
drwxr-x---
2025-11-08 11:17
jquery
[ DIR ]
drwxr-x---
2025-11-08 11:17
tiny_mce
[ DIR ]
drwxr-x---
2025-11-08 11:17
vendor
[ DIR ]
drwxr-x---
2025-11-08 11:17
admin-categories-tree.js
9.14
KB
-rwxr-x---
2018-05-03 14:22
admin-dashboard.js
9.53
KB
-rwxr-x---
2018-05-03 14:22
admin-dnd.js
5.13
KB
-rwxr-x---
2018-05-03 14:22
admin-products.js
53.15
KB
-rwxr-x---
2018-05-03 14:22
admin-scene-cropping.js
6.9
KB
-rwxr-x---
2018-05-03 14:22
admin.js
42.64
KB
-rwxr-x---
2018-05-03 14:22
adminImport.js
4.8
KB
-rwxr-x---
2018-05-03 14:22
admin_carrier_wizard.js
23.73
KB
-rwxr-x---
2018-05-03 14:22
admin_order.js
27.2
KB
-rwxr-x---
2018-05-03 14:22
admin_themes.js
2.18
KB
-rwxr-x---
2018-05-03 14:22
attributesBack.js
5.65
KB
-rwxr-x---
2018-05-03 14:22
date.js
11.25
KB
-rwxr-x---
2018-05-03 14:22
fileuploader.js
34.62
KB
-rwxr-x---
2018-05-03 14:22
hookLiveEdit.js
9.41
KB
-rwxr-x---
2018-05-03 14:22
index.php
1.24
KB
-rwxr-x---
2018-05-03 14:22
login.js
4.8
KB
-rwxr-x---
2018-05-03 14:22
notifications.js
3.85
KB
-rwxr-x---
2018-05-03 14:22
price.js
8.84
KB
-rwxr-x---
2018-05-03 14:22
retro-compat.js.php
4.7
KB
-rwxr-x---
2018-05-03 14:22
rtl.js
1.39
KB
-rwxr-x---
2018-05-03 14:22
tinymce.inc.js
1.71
KB
-rwxr-x---
2018-05-03 14:22
tools.js
16.37
KB
-rwxr-x---
2018-05-03 14:22
validate.js
20.67
KB
-rwxr-x---
2018-05-03 14:22
Save
Rename
/* * 2007-2014 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-2014 PrestaShop SA * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) * International Registered Trademark & Property of PrestaShop SA */ function toggleShopModuleCheckbox(id_shop, toggle){ var formGroup = $("[for='to_disable_shop"+id_shop+"']").parent(); if (toggle === true) { formGroup.removeClass('hide'); formGroup.find('input').each(function(){$(this).prop('checked', 'checked');}); } else { formGroup.addClass('hide'); formGroup.find('input').each(function(){$(this).prop('checked', '');}); } } $(function(){ $('div.thumbnail-wrapper').hover( function() { var w = $(this).parent('div').outerWidth(true); var h = $(this).parent('div').outerHeight(true); $(this).children('.action-wrapper').css('width', w+'px'); $(this).children('.action-wrapper').css('height', h+'px'); $(this).children('.action-wrapper').show(); }, function() { $('.thumbnail-wrapper .action-wrapper').hide(); } ); $("[name^='checkBoxShopGroupAsso_theme']").change(function(){ $(this).parents('.tree-folder').find("[name^='checkBoxShopAsso_theme']").each(function(){ var id = $(this).attr('value'); var checked = $(this).prop('checked'); toggleShopModuleCheckbox(id, checked); }); }); $("[name^='checkBoxShopAsso_theme']").click(function(){ var id = $(this).attr('value'); var checked = $(this).prop('checked'); toggleShopModuleCheckbox(id, checked); }); });