| Current Path : /home/rtorresani/www/vendor/magento/module-ui/view/base/templates/wysiwyg/ |
| 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);