Spamworldpro Mini Shell
Spamworldpro


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/app/design/frontend/Cnc/default/Kaliop_OutdatedBrowser/templates/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/old/app/design/frontend/Cnc/default/Kaliop_OutdatedBrowser/templates/popin.phtml
<?php
/**
 * Copyright (c) 2020 Kaliop Digital Commerce (https://digitalcommerce.kaliop.com) All Rights Reserved.
 * @author Philippe Beauvais <[email protected]>
 * https://opensource.org/licenses/OSL-3.0  Open Software License (OSL 3.0)
 */

/** @var \Kaliop\OutdatedBrowser\ViewModel\Popin $viewModel */
$viewModel = $block->getViewModel();
?>
<!-- Kaliop Outdated Browser popin -->
<div id="outdated-browser-popin" class="ob-popin" style="display: none;">
    <div class="ob-popin__overlay"></div>
    <section class="ob-popin__inner">
        <header class="ob-popin__top">
            <p class="title-1 ob-popin__title">
                <?= $block->escapeHtml(__("... YIKES!")) ?>
            </p>
            <p class="title-2 ob-popin__subtitle">
                <?= $block->escapeHtml(__("Your web browser is not supported by this site, <br />please update it."), ['br']) ?>
            </p>
            <p>
                <?= $block->escapeHtml(__("We invite you to update it to have an optimal and secured experience.")) ?>
            </p>
        </header>
        <div class="ob-popin__main">
            <ul class="ob-popin__list">
                <?php foreach ($viewModel->getNavigatorCodes() as $navigatorCode): ?>
                    <li class="<?= $block->escapeHtml($navigatorCode) ?>">
                        <a href="<?= $block->escapeUrl($viewModel->getNavigatorDownloadUrl($navigatorCode)); ?>" target="_blank">
                            <div class="ob-popin-item">
                                <div class="ob-popin-item__visual"></div>
                                <div class="ob-popin-item__content">
                                    <?= $block->escapeHtml($viewModel->getNavigatorText($navigatorCode)) ?>
                                </div>
                                <span class="btn btn--rounded ob-popin-item__action">
                                <?= $block->escapeHtml(__("Download")) ?>
                            </span>
                            </div>
                        </a>
                    </li>
                <?php endforeach; ?>
            </ul>
        </div>
        <div class="ob-popin__bottom">
            <a href="#" type="button" id="outdated-browser-cancel-button" class="link-1 ob-popin__action">
                <?= $block->escapeHtml(__('I wish to continue my navigation')) ?>
            </a>
        </div>
    </section>
</div>

Spamworldpro Mini