uawdijnntqw1x1x1
IP : 216.73.216.231
Hostname : 213-108-241-110.cprapid.com
Kernel : Linux 213-108-241-110.cprapid.com 5.14.0-570.25.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 9 04:57:09 EDT 2025 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
digilove
/
public_html
/
.
/
cli
/
..
/
41423
/
mod_virtuemart_currencies.tar
/
/
language/en-GB/en-GB.mod_virtuemart_currencies.ini000064400000002160152325656550016107 0ustar00; Virtuemart! Project ; Copyright (C) 2011 Virtuemart Team. All rights reserved. ; License http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL, see LICENSE.php ; Note : All ini files need to be saved as UTF-8 - No BOM MOD_VIRTUEMART_CURRENCIES="VirtueMart Currency Selector" MOD_VIRTUEMART_CURRENCIES_BUTTON_TXT="Button Name" MOD_VIRTUEMART_CURRENCIES_BUTTON_TXT_DESC="Text to display on the button.<br />Leave it EMPTY for auto label it by user language settings" MOD_VIRTUEMART_CURRENCIES_CHANGE_CURRENCIES="Change Currency" MOD_VIRTUEMART_CURRENCIES_DESC="This module is used to convert the price depending on the currency selected in your VirtueMart shop.<br/>(VirtueMart 2+ compatible)" MOD_VIRTUEMART_CURRENCIES_DISPLAY="Currencies to display" MOD_VIRTUEMART_CURRENCIES_DISPLAY_DESC="The selected currencies are shown in the module so the customer can select one of those currencies. <br />If none are selected, currencies displayed are the vendor accepted currencies." MOD_VIRTUEMART_CURRENCIES_PRE_TEXT="Pre-text" MOD_VIRTUEMART_CURRENCIES_PRE_TEXT_DESC="This is the Text or HTML that is displayed at the beginning of the Module"language/en-GB/en-GB.mod_virtuemart_currencies.sys.ini000064400000000543152325656550016727 0ustar00; Virtuemart! Project ; Copyright (C) 2011 Virtuemart Team. All rights reserved. ; License http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL, see LICENSE.php ; Note : All ini files need to be saved as UTF-8 - No BOM MOD_VIRTUEMART_CURRENCIES="VirtueMart Currency Selector" MOD_VIRTUEMART_CURRENCIES_DESC="Allows the shopper to change the currency prices"tmpl/default.php000064400000001513152325656550007673 0ustar00<?php // no direct access defined('_JEXEC') or die('Restricted access'); vmJsApi::jQuery(); vmJsApi::chosenDropDowns(); ?> <!-- Currency Selector Module --> <?php echo $text_before ?> <form action="<?php echo vmURI::getCurrentUrlBy('get',true) ?>" method="post"> <!--input class="button" type="submit" name="submit" value="<?php echo vmText::_('MOD_VIRTUEMART_CURRENCIES_CHANGE_CURRENCIES') ?>" /--> <?php echo JHTML::_('select.genericlist', $currencies, 'virtuemart_currency_id', 'class="changeSendForm inputbox vm-chzn-select"', 'virtuemart_currency_id', 'currency_txt', $virtuemart_currency_id) ; ?> </form> <?php $j = 'jQuery(document).ready(function() { jQuery(".changeSendForm") .off("change",Virtuemart.sendCurrForm) .on("change",Virtuemart.sendCurrForm); })'; vmJsApi::addJScript('sendFormChange',$j); echo vmJsApi::writeJS();tmpl/jssubmit.php000064400000001270152325656550010107 0ustar00<?php // no direct access defined('_JEXEC') or die('Restricted access'); vmJsApi::jQuery(); vmJsApi::chosenDropDowns(); ?> <!-- Currency Selector Module --> <?php echo $text_before ?> <form action="<?php echo vmURI::getCleanUrl() ?>" method="get"> <?php echo JHTML::_('select.genericlist', $currencies, 'virtuemart_currency_id', 'class="inputbox vm-chzn-select changeSendForm"', 'virtuemart_currency_id', 'currency_txt', $virtuemart_currency_id) ; ?> </form> <?php $j = 'jQuery(document).ready(function() { jQuery(".changeSendForm") .off("change",Virtuemart.sendCurrForm) .on("change",Virtuemart.sendCurrForm); })'; vmJsApi::addJScript('sendFormChange',$j); echo vmJsApi::writeJS();mod_virtuemart_currencies.php000064400000003270152325656550012560 0ustar00<?php defined('_JEXEC') or die( 'Direct Access to '.basename(__FILE__).' is not allowed.' ); /** * Currency Selector Module * * NOTE: THIS MODULE REQUIRES THE VIRTUEMART COMPONENT! /* * @version $Id: mod_virtuemart_currencies.php 10649 2022-05-05 14:29:44Z Milbo $ * @package VirtueMart * @subpackage modules * * @copyright (C) 2014 virtuemart team - All rights reserved. * @license http://www.gnu.org/copyleft/gpl2.html GNU/GPL * VirtueMart is Free Software. * VirtueMart comes with absolute no warranty. * * @link https://virtuemart.net */ /*********** * * Prices in the orders are saved in the shop currency; these fields are required * to show the prices to the user in a later stadium. */ if (!class_exists( 'VmConfig' )) require(JPATH_ROOT .'/administrator/components/com_virtuemart/helpers/config.php'); VmConfig::loadConfig(); vmLanguage::loadModJLang('mod_virtuemart_currencies'); vmJsApi::jQuery(); vmLanguage::loadJLang( 'com_virtuemart', true ); vmJsApi::jSite(); vmJsApi::addJScript( 'vmprices',false,false); $mainframe = JFactory::getApplication(); $vendorId = vRequest::getInt('vendorid', 1); $text_before = $params->get( 'text_before', ''); /* load the template */ $currencyModel = VmModel::getModel('currency'); $currencies = $currencyModel->getVendorAcceptedCurrrenciesList($vendorId); $currencyDisplay = CurrencyDisplay::getInstance(); $virtuemart_currency_id = $mainframe->getUserStateFromRequest( "virtuemart_currency_id", 'virtuemart_currency_id',vRequest::getInt('virtuemart_currency_id',$currencyDisplay->_vendorCurrency) ); require JModuleHelper::getLayoutPath('mod_virtuemart_currencies', $params->get('layout', 'default')); mod_virtuemart_currencies.xml000064400000005052152325656550012571 0ustar00<?xml version="1.0" encoding="utf-8"?> <extension type="module" version="2.5.0"> <name>mod_virtuemart_currencies</name> <creationDate>June 13 2023</creationDate> <author>The VirtueMart Development Team</author> <authorUrl>https://virtuemart.net</authorUrl> <copyright>Copyright (C) 2004 - 2023 Virtuemart Team. All rights reserved.</copyright> <license>http://www.gnu.org/licenses/gpl-3.0.html GNU/GPL</license> <version>4.0.23</version> <description>MOD_VIRTUEMART_CURRENCIES_DESC</description> <files> <filename module="mod_virtuemart_currencies">mod_virtuemart_currencies.php</filename> <filename>tmpl/default.php</filename> <folder>language</folder> </files> <config> <fields name="params"> <fieldset name="basic"> <field name="text_before" type="textarea" cols="40" rows="3" default="" label="MOD_VIRTUEMART_CURRENCIES_PRE_TEXT" description="MOD_VIRTUEMART_CURRENCIES_PRE_TEXT_DESC" /> <field name="product_currency" type="text" default="" label="MOD_VIRTUEMART_CURRENCIES_DISPLAY" description="MOD_VIRTUEMART_CURRENCIES_DISPLAY_DESC" /> </fieldset> <fieldset name="advanced"> <field name="layout" type="modulelayout" label="JFIELD_ALT_LAYOUT_LABEL" description="JFIELD_ALT_MODULE_LAYOUT_DESC" /> <field name="cache" type="radio" default="0" label="Enable Cache" description="Select whether to cache the content of this module" > <option value="0">No</option> <option value="1">Yes</option> </field> <field name="moduleclass_sfx" type="text" default="" label="COM_MODULES_FIELD_MODULECLASS_SFX_LABEL" description="COM_MODULES_FIELD_MODULECLASS_SFX_DESC" /> <field name="class_sfx" type="text" default="" label="Menu Class Suffix" description="A suffix to be applied to the css class of the menu items" /> </fieldset> </fields> </config> <updateservers> <!-- Note: No spaces or linebreaks allowed between the server tags --> <server type="extension" name="VirtueMart3 mod_virtuemart_currencies Update Site"><![CDATA[http://virtuemart.net/releases/vm3/mod_virtuemart_currencies_update.xml]]></server> </updateservers> </extension>
/home/digilove/public_html/./cli/../41423/mod_virtuemart_currencies.tar