Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/old/vendor/magento/module-catalog/view/adminhtml/templates/catalog/product/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/old/vendor/magento/module-catalog/view/adminhtml/templates/catalog/product/js.phtml
<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

/** @var \Magento\Catalog\Block\Adminhtml\Product\Edit\Js $block */
/** @var \Magento\Framework\View\Helper\SecureHtmlRenderer $secureRenderer */
?>

<?php
/** @var TaxHelper $taxHelper */
$taxHelper = $block->getData('taxHelper');
$priceFormat = /* @noEscape */ $taxHelper->getPriceFormat($block->getStore());
$allRatesByProductClassJson = /* @noEscape */ $block->getAllRatesByProductClassJson();
$scriptString = <<<script
require([
    "jquery",
    "prototype",
    "mage/backend/tabs"
], function(jQuery){

//<![CDATA[
Event.observe(window, 'load', recalculateTax);
Event.observe(window, 'load', registerTaxRecalcs);

function registerTaxRecalcs() {
    if (typeof dynamicTaxes == 'undefined') {
        return;
    }

    for (var i = 0; i < dynamicTaxes.length; i++) {
        Event.observe($(dynamicTaxes[i]), 'change', recalculateTax);
    }
    Event.observe($('tax_class_id'), 'change', recalculateTax);
}

var priceFormat = {$priceFormat};
var taxRates = {$allRatesByProductClassJson};

function recalculateTax() {
    if (typeof dynamicTaxes == 'undefined') {
        return;
    }

    for (var i = 0; i < dynamicTaxes.length; i++) {
        var code = dynamicTaxes[i];
        var span = $('dynamic-tax-' + code);
        var input = $(code);

        if (!input.value) {
            span.innerHTML = '';
            continue;
        }

        var rate = 0,
            taxClass = $('tax_class_id').options[$('tax_class_id').selectedIndex].value,
            value = taxRates['value_' + taxClass];

        if (value != undefined) {
            rate = value;
        }

        var spanValue = '';
        if (rate != 0) {
            spanValue = ' ' + formatCurrency(input.value / (100 + rate) * rate, priceFormat);
        }
        span.innerHTML = spanValue;
    }
}

// Bind tab changes
function bindActiveProductTab(event, ui) {
    var anchor = jQuery(ui.newTab).find('a');
    if (anchor && anchor.name && $('store_switcher')) {
        $('store_switcher').switchParams = 'active_tab/' + anchor.name + '/';
    }
}
//varienGlobalEvents.attachEventHandler('showTab', bindActiveProductTab);
jQuery(document).on('tabsactivate', bindActiveProductTab);

// bind active tab
script;
if ($tabsBlock = $block->getLayout()->getBlock('product_tabs')):
    $scriptString .= <<<script
jQuery(function () {
    if (jQuery('#{$block->escapeJs($tabsBlock->getId())}').length &&
        jQuery('#{$block->escapeJs($tabsBlock->getId())}').is(':mage-tabs')) {
        var activeAnchor = jQuery('#{$block->escapeJs($tabsBlock->getId())}').tabs('activeAnchor');
        if (activeAnchor && $('store_switcher')) {
            $('store_switcher').switchParams = 'active_tab/' + activeAnchor.prop('name') + '/';
        }
    }
});
script;
endif;

$scriptString .= <<<script

window.recalculateTax = recalculateTax;
window.bindActiveProductTab = bindActiveProductTab;
window.registerTaxRecalcs = registerTaxRecalcs;
//]]>

});
script;
?>
<?= /* @noEscape */ $secureRenderer->renderTag('script', [], $scriptString, false) ?>

Spamworldpro Mini