![]() 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-backend/view/adminhtml/templates/widget/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> <?php if (!empty($links)) : ?> <ul class="breadcrumbs"> <?php $_size = count($links); ?> <?php foreach ($links as $_index => $_link) : ?> <li> <?php if (empty($_link['url'])) : ?> <?php if ($_index != $_size-1) : ?> <span><?= $block->escapeHtml($_link['label']) ?></span> <?php else : ?> <strong><?= $block->escapeHtml($_link['label']) ?></strong> <?php endif; ?> <?php else : ?> <a href="<?= $block->escapeUrl($_link['url']) ?>" title="<?= $block->escapeHtml($_link['title']) ?>"><?= $block->escapeHtml($_link['label']) ?></a> <?php endif; ?> <?php if ($_index != $_size-1) : ?> » <?php endif; ?> </li> <?php endforeach; ?> </ul> <?php endif; ?>