Linux mail.vriendennsm.nl 6.1.0-51-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.177-1 (2026-07-16) x86_64
Apache/2.4.68 (Debian)
Server IP : 217.154.75.17 & Your IP : 216.73.216.195
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
vnsm /
modules /
mod_j2store_cart /
Delete
Unzip
Name
Size
Permission
Date
Action
css
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
tmpl
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
helper.php
2.94
KB
-rwxr-xr-x
2022-02-20 10:42
index.html
44
B
-rwxr-xr-x
2022-02-20 10:42
mod_j2store_cart.php
2.55
KB
-rwxr-xr-x
2022-02-20 10:42
mod_j2store_cart.xml
5.15
KB
-rwxr-xr-x
2022-02-20 10:42
Save
Rename
<?php /*------------------------------------------------------------------------ # mod_j2store_cart - J2 Store Cart # ------------------------------------------------------------------------ # author Sasi varna kumar - Weblogicx India http://www.weblogicxindia.com # copyright Copyright (C) 2014 - 19 Weblogicxindia.com. All Rights Reserved. # @license - http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL # Websites: http://j2store.org # Technical Support: Forum - http://j2store.org/forum/index.html -------------------------------------------------------------------------*/ // no direct access defined( '_JEXEC' ) or die( 'Restricted access' ); if (!defined('F0F_INCLUDED')) { include_once JPATH_LIBRARIES . '/f0f/include.php'; } require_once( dirname(__FILE__).'/helper.php' ); JFactory::getLanguage()->load('com_j2store', JPATH_ADMINISTRATOR); $layout = $params->get('layout', 'default'); $moduleclass_sfx = $params->get('moduleclass_sfx',''); $link_type = $params->get('link_type','link'); $currency = J2Store::currency(); J2Store::utilities()->nocache(); $document = JFactory::getDocument(); $ajax_url = JRoute::_('index.php?option=com_j2store&view=carts&task=ajaxmini'); $script = " if(typeof(j2store) == 'undefined') { var j2store = {}; } if(typeof(j2store.jQuery) == 'undefined') { j2store.jQuery = jQuery.noConflict(); } (function($) { $(document).bind('after_adding_to_cart', function(element,data, type){ var murl = '{$ajax_url}'; $.ajax({ url : murl, type : 'get', cache : false, contentType : 'application/json; charset=utf-8', dataType : 'json', success : function(json) { if (json != null && json['response']) { $.each(json['response'], function(key, value) { if ($('.j2store_cart_module_' + key).length) { $('.j2store_cart_module_' + key).each(function() { $(this).html(value); }); } }); } } }); }); })(j2store.jQuery); "; $document->addScriptDeclaration($script); $document->addStyleSheet(JUri::root().'modules/mod_j2store_cart/css/j2store_cart.css'); $list = modJ2StoreCartHelper::getItems(); //this is required only if the layout is detail cart on homver if (strpos($layout, 'detailcartonhover') !== false) { $advanced_list = modJ2StoreCartHelper::getAdavcedItems(); $order = modJ2StoreCartHelper::getOrder (); $model = F0FModel::getTmpInstance('Carts','J2StoreModel'); $checkout_url = $model->getCheckoutUrl(); } $custom_css = $params->get('custom_css', ''); $document->addStyleDeclaration(strip_tags($custom_css)); require( JModuleHelper::getLayoutPath('mod_j2store_cart', $layout));