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/code/Cnc/CsBlock/view/frontend/templates/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/old/app/code/Cnc/CsBlock/view/frontend/templates/key_figures.phtml
<?php
/**
 * Copyright (c) 2020 Kaliop Digital Commerce (https://digitalcommerce.kaliop.com) All Rights Reserved.
 * https://opensource.org/licenses/OSL-3.0  Open Software License (OSL 3.0)
 * Cnc
 * Radosław Stępień <[email protected]> <[email protected]>
 */
use Cnc\CsBlock\Block\KeyFigures;

//phpcs:disable


/** @var KeyFigures $block */
$keyFiguresTitle = $block->getBlockName();
$keyFiguresMainLabels = $block->getMainLabels();
$keyFiguresSecondaryLabels = $block->getSecondaryLabels();
$keyFiguresBg = $block->getBackgroundImage();
$keyFiguresCtaLabel = $block->getCtaButtonLabel();
$keyFiguresCtaLink = $block->getCtaButtonLink();
?>
<section class="cs-block key-figures" data-displayed-on-scroll="">

    <div class="key-figures__bg">
        <?= html_entity_decode($block->escapeHtml($keyFiguresBg)); ?>
    </div>

    <div class="cs-block__container key-figures__container">
        <div class="cs-block__title"><?= $block->escapeHtml($keyFiguresTitle) ?></div>
        <div class="cs-block__content">
            <div class="key-figures-container" data-slideshow-mobile-custom="">
                <?php for ($i = 1; $i <= KeyFigures::LABELS_COUNT; $i++): ?>
                <div class="key-figures-container__item">
                    <div>
                        <div class="main-label"><?= $block->escapeHtml($keyFiguresMainLabels[$i]) ?></div>
                        <span><?= $block->escapeHtml($keyFiguresSecondaryLabels[$i]) ?></span>
                    </div>
                </div>
                <?php endfor; ?>
            </div>
            <div class="a-center">
                <a class="btn btn--border-white"
                   href="<?= $block->escapeHtml($keyFiguresCtaLink) ?>">
                    <?= $block->escapeHtml($keyFiguresCtaLabel) ?>
                </a>
            </div>
        </div>
    </div>
</section>

<?php
//phpcs:enable
?>

Spamworldpro Mini