<?php /** * Mageplaza * * NOTICE OF LICENSE * * This source file is subject to the Mageplaza.com license that is * available through the world-wide-web at this URL: * https://www.mageplaza.com/LICENSE.txt * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade this extension to newer * version in the future. * * @category Mageplaza * @package Mageplaza_FacebookPlugin * @copyright Copyright (c) Mageplaza (https://www.mageplaza.com/) * @license https://www.mageplaza.com/LICENSE.txt */ /** @var Mageplaza\FacebookPlugin\Block\Facebook $block */ if ($block->getHelperData()->isEnabled()) : ?> <?php $src = 'https://connect.facebook.net/' . $block->getLanguage() . '/sdk.js#xfbml=1&version=v3.2&appId=' . $block->getAppId() . '&autoLogAppEvents=1' ?> <div id="fb-root"></div><script>(function (d, s, id) {
            var js, fjs = d.getElementsByTagName(s)[0];
            if (d.getElementById(id)) return;
            js = d.createElement(s);
            js.id = id;
            js.src = '<?= /** @noEscape */ $src ?>';
            fjs.parentNode.insertBefore(js, fjs);
        }(document, 'script', 'facebook-jssdk'));</script><?php endif; ?>