| Current Path : /var/www/clients/client3/web2/web/vendor/magento/module-theme/view/frontend/templates/ |
| Current File : /var/www/clients/client3/web2/web/vendor/magento/module-theme/view/frontend/templates/text.phtml |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
$attributes = $block->getCssClass() ? ' class="' . $block->escapeHtmlAttr($block->getCssClass()) . '"' : '';
$attr = $block->getAttributes();
if (!empty($attr)) {
foreach ($block->getAttributes() as $attribute => $value) {
$attributes .= ' ' . $block->escapeHtml($attribute) . '="' . $block->escapeHtmlAttr($value) . '"';
}
}
/* @noEscape */ echo '<'
. $block->escapeHtml($block->getTag())
. $attributes
. '>'
. $block->escapeHtml($block->getText())
. '</'
. $block->escapeHtml($block->getTag())
. '>';