![]() 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/extmag/shiplab/view/adminhtml/templates/manualLabel/ |
<?php /** * Copyright © Extmag. All rights reserved. */ $errors = $block->getRequest()->getParam('error'); if ($errors && is_array($errors)) { echo '<h3 class="errors-title">' . __('Configuration check returned errors. Errors need to be resolved and refresh this page.') . '</h3>'; echo '<ul class="errors">'; foreach ($errors as $error) { ?> <li class="item"> <span><?= $error['title'] ?></span> <?php if (!empty($error['check_link'])) { ?> <a href="<?= $error['check_link'] ?>" class="check" target="_blank"> (<?= __('check'); ?>) </a><?php } ?> </li> <?php } echo '</ul>'; } else { echo __('Unknown error on the server'); }