![]() 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/magefan/module-blog/view/adminhtml/templates/ |
<?php /** * Copyright © Magefan ([email protected]). All rights reserved. * Please visit Magefan.com for license details (https://magefan.com/end-user-license-agreement). * * Glory to Ukraine! Glory to the heroes! */ ?> <?php /** * Blog available for to get notification * * @var $block \Magefan\Blog\Block\Adminhtml\System\Config\Form\CheckEnableInfo */ ?> <?php if (!$block->isEnabled()) { ?> <div class="messages"> <div class="message message-error"> <div data-ui-id="messages-message-error"> <?= /*@noEscape*/ __( 'Magefan Blog is disabled, to enable the extension please navigate to <a href="%1" target="_blank">Stores > Configuration > Magefan Extensions > Blog</a>.', $block->getUrl( 'adminhtml/system_config/edit', ['section' => 'mfblog'] ) ); ?> </div> </div> </div> <?php } elseif ($block->isKeyMissing()) { ?> <div class="messages"> <div class="message message-error"> <div data-ui-id="messages-message-error"> <?= /*@noEscape*/ __( 'Magefan Blog <strong>Product Key</strong> is missing. Blog Extension will be automatically disabled soon. Please specify the product key in <a href="%1" target="_blank">Stores > Configuration > Magefan Extensions > Blog</a>.', $block->getUrl( 'adminhtml/system_config/edit', ['section' => 'mfblog'] ) ); ?> </div> </div> </div> <?php } ?> <?php if ($anotherBlogs = $block->isAnotherBlogModulesEnabled()) { ?> <div class="messages"> <div class="message message-notice"> <div data-ui-id="messages-message-notice"> <?= $block->escapeHtml(__( 'Possible conflict. If you have problems with the module Magefan Blog, try to disable the following modules: %1. To disable module please run following command in the Magento root directory: bin/magento module:disable Vendor_ModuleName', implode(', ', $anotherBlogs) )); ?> </div> </div> </div> <?php } ?>