![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-customer/view/frontend/templates/account/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /** @var Magento\Customer\Block\Account\Customer $block */ ?> <?php if ($block->customerLoggedIn()) : ?> <li class="customer-welcome"> <span class="customer-name" role="link" tabindex="0" data-mage-init='{"dropdown":{}}' data-toggle="dropdown" data-trigger-keypress-button="true" data-bind="scope: 'customer'"> <button type="button" class="action switch" tabindex="-1" data-action="customer-menu-toggle"> <span><?= $block->escapeHtml(__('Change')) ?></span> </button> </span> <script type="text/x-magento-init"> { "*": { "Magento_Ui/js/core/app": { "components": { "customer": { "component": "Magento_Customer/js/view/customer" } } } } } </script> <?php if ($block->getChildHtml()) :?> <div class="customer-menu" data-target="dropdown"> <?= $block->getChildHtml() ?> </div> <?php endif; ?> </li> <?php endif; ?>