Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/magento/module-ui/view/base/templates/wysiwyg/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-ui/view/base/templates/wysiwyg/active_editor.phtml

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

/** @var Magento\Ui\Block\Wysiwyg\ActiveEditor $block */
/** @var \Magento\Framework\View\Helper\SecureHtmlRenderer $secureRenderer */

$wysiwygAdapterPath = /* @noEscape */ $block->getWysiwygAdapterPath();
$scriptString = <<<script
    require.config({
        map: {
            '*': {
                wysiwygAdapter: '{$wysiwygAdapterPath}'
            }
        }
    });
script;

echo /* @noEscape */ $secureRenderer->renderTag('script', [], $scriptString, false);