File tree Expand file tree Collapse file tree 3 files changed +10
-10
lines changed
Theme/view/base/templates Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 6
6
7
7
?>
8
8
<!doctype html>
9
- <html <?= $ block -> escapeHtmlAttr ( $ htmlAttributes) ?> >
10
- <head <?= $ block -> escapeHtmlAttr ( $ headAttributes) ?> >
11
- <?= $ block -> escapeHtml ( $ requireJs) ?>
12
- <?= $ block -> escapeHtml ( $ headContent) ?>
13
- <?= $ block -> escapeHtml ( $ headAdditional) ?>
9
+ <html <?= /* @noEscape */ $ htmlAttributes ?> >
10
+ <head <?= /* @noEscape */ $ headAttributes ?> >
11
+ <?= /* @noEscape */ $ requireJs ?>
12
+ <?= /* @noEscape */ $ headContent ?>
13
+ <?= /* @noEscape */ $ headAdditional ?>
14
14
</head>
15
- <body data-container="body" data-mage-init='{"loaderAjax": {}, "loader": { "icon": "<?= $ block -> escapeHtmlAttr ( $ loaderIcon) ?> "}}' <?= $ block -> escapeHtmlAttr ( $ bodyAttributes) ?> >
16
- <?= $ block -> escapeHtml ( $ layoutContent) ?>
15
+ <body data-container="body" data-mage-init='{"loaderAjax": {}, "loader": { "icon": "<?= /* @noEscape */ $ loaderIcon ?> "}}' <?= /* @noEscape */ $ bodyAttributes ?> >
16
+ <?= /* @noEscape */ $ layoutContent ?>
17
17
</body>
18
18
</html>
Original file line number Diff line number Diff line change 6
6
7
7
/** @var $block \Magento\Ui\Block\Component\StepsWizard */
8
8
?>
9
- <div data-role="steps-wizard-main" class="steps-wizard <?= $ block ->escapeHtmlAttr ( $ block -> getData ('config/dataScope ' ) ) ?> " data-bind="scope: '<?= $ block ->escapeHtmlAttr ($ block ->getComponentName ()) ?> '">
9
+ <div data-role="steps-wizard-main" class="steps-wizard <?= /* @noEscape */ $ block ->getData ('config/dataScope ' ) ?> " data-bind="scope: '<?= $ block ->escapeHtmlAttr ($ block ->getComponentName ()) ?> '">
10
10
<div data-role="messages" class="messages"></div>
11
11
12
12
<div data-role="steps-wizard-controls" class="steps-wizard-navigation">
62
62
"component": "Magento_Ui/js/lib/step-wizard",
63
63
"initData": <?= $ block ->escapeJs ($ this ->helper ("Magento\Framework\Json\Helper\Data " )->jsonEncode ($ block ->getInitData ())) ?> ,
64
64
"stepsNames": <?= $ block ->escapeJs ($ this ->helper ("Magento\Framework\Json\Helper\Data " )->jsonEncode ($ block ->getStepComponents ())) ?> ,
65
- "modalClass": "<?= $ block ->escapeJs ( $ block -> getData ('config/dataScope ' ) ) ?> "
65
+ "modalClass": "<?= /* @noEscape */ $ block ->getData ('config/dataScope ' ) ?> "
66
66
}
67
67
}
68
68
}
Original file line number Diff line number Diff line change 10
10
require.config({
11
11
map: {
12
12
'*': {
13
- wysiwygAdapter: '<?= $ block ->escapeJs ( $ block -> getWysiwygAdapterPath () ) ?> '
13
+ wysiwygAdapter: '<?= /* @noEscape */ $ block ->getWysiwygAdapterPath () ?> '
14
14
}
15
15
}
16
16
});
You can’t perform that action at this time.
0 commit comments