# wt-security/2.3.11/includes/antivirus.php

WebTotem Security, version 2.3.11. 142 lines.

- Page: https://pluginprobe.com/plugins/wt-security/2.3.11/code/includes/antivirus.php
- Raw: https://pluginprobe.com/plugins/wt-security/2.3.11/raw/includes/antivirus.php
- Modified: 2021-02-21T15:24:48+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wt-security/2.3.11/code/includes/antivirus.php#L10-L20`.

```php
<?php defined('ABSPATH') or die("Protected By WT!");?>
<?php if(!empty($arguments)):?>
<div class="wtotem_content">
    <div class="wtotem_container">
        <div class="wtotem_antivirus">
            <div class="wtotem_antivirus__first section-header-mb">
                <h2 class="title">
                    <?= wtsec_locale("remote_antivirus") ?>
                </h2>

            </div>
            <div class="wtotem_antivirus__block wt_card">
                <div class="wtotem_antivirus__item">
                    <div class="wtotem_antivirus__figures wtotem_antivirus__figures_green">
                        <?= $arguments["vc"]["scanned"] ?>
                    </div>
                    <div class="wtotem_antivirus__title">
                        <?= wtsec_locale("antivirus.scanned") ?>
                    </div>
                </div>

                <div class="wtotem_antivirus__item">
                    <div class="wtotem_antivirus__figures wtotem_antivirus__figures_yellow">
                        <?= $arguments["vc"]["changes"] ?>
                    </div>
                    <div class="wtotem_antivirus__title">
                        <?= wtsec_locale("antivirus.changed") ?>
                    </div>
                </div>

                <div class="wtotem_antivirus__item">
                    <div class="wtotem_antivirus__figures wtotem_antivirus__figures_black">
                        <?= $arguments["vc"]["deleted"] ?>
                    </div>
                    <div class="wtotem_antivirus__title">
                        <?= wtsec_locale("antivirus.deleted") ?>
                    </div>
                </div>

                <div class="wtotem_antivirus__item">
                    <div class="wtotem_antivirus__figures wtotem_antivirus__figures_orange">
                        <?= $arguments["vc"]["signatures"] ?>
                    </div>
                    <div class="wtotem_antivirus__title">
                        <?= wtsec_locale("antivirus.infected") ?>
                    </div>
                </div>
            </div>
        </div>

        <?php include 'components/_quarantine_lazy.php'?>

        <div class="wtotem_state wt_card">
            <div class="wtotem_av_filters_wrapper">
                <div class="wtotem_state__select-wrapper">
                    <select name="file-status" id="wtotem_av_state_filter" class="wtotem_state__select">
                        <option class="wtotem_state__option" value="new"><?= wtsec_locale("antivirus.select.new") ?></option>
                        <option class="wtotem_state__option" value="scanned"><?= wtsec_locale("antivirus.select.scanned") ?></option>
                        <option class="wtotem_state__option" value="modified"><?= wtsec_locale("antivirus.select.changed") ?></option>
                        <option class="wtotem_state__option" value="deleted"><?= wtsec_locale("antivirus.select.deleted") ?></option>
                        <option class="wtotem_state__option" value="infected"><?= wtsec_locale("antivirus.select.infected") ?></option>
                    </select>
                </div>
                <div class="wtotem_filter__wrapper wt-margin-bottom-15">

                    <div class="wtotem_chart__calendars">
                        <div class="wtotem_calendar-icon"></div>
                        <input
                                class="flatpickr flatpickr-input wtotem_calendar"
                                type="text"
                                placeholder="<?= wtsec_locale("chart.select-date") ?>"
                                readonly="readonly"
                                id="av_period_filter"
                        />
                        <div class="wtotem_calendar-connect">
                            -
                        </div>
                        <input
                                class="wtotem_calendar"
                                type="text"
                                placeholder="<?= wtsec_locale("chart.select-date") ?>"
                                id="secondRangeInput"
                                readonly="readonly"
                        />
                    </div>
                </div>
            </div>


            <div class="wtotem_file-table">
                <div class="wtotem_file-table__thead">
                    <div class="wtotem_file-table__tr">
                        <div class="wtotem_file-table__th">
                            <?= wtsec_locale("file") ?>
                        </div>
                        <div class="wtotem_file-table__th">
                            <?= wtsec_locale("antivirus.permission") ?>
                            <span class="wtotem_title-info__info wtotem-tooltip">
                                <div class="wtotem-tooltip__content">
                                  <?= wtsec_locale("tooltips.permission") ?>
                                </div>
                            </span>
                        </div>
                        <div class="wtotem_file-table__th">
                            <?= wtsec_locale("antivirus.info.title") ?>
                        </div>
                        <div class="wtotem_file-table__th">
                            <?= wtsec_locale("antivirus.date") ?>
                        </div>
                        <div class="wtotem_file-table__th">
                            <?= wtsec_locale("antivirus.time") ?>
                        </div>
                        <div class="wtotem_file-table__th">
                            <?= wtsec_locale("description") ?>
                        </div>
                    </div>
                </div>
                <div class="wtotem_file-table__tbody" id="wtotem_data_box">
                    <?php include 'components/_antivirus_lazy.php'?>
                </div>
            </div>

            <div class="wtotem_state__line"></div>

            <div class="wtotem_state__last">
                <div class="wtotem_state__text">
                    <?= wtsec_locale("need_more_support") ?>
                    <a target="_blank" href="https://wtotem.com/#hs-chat-open"><?= wtsec_locale("lets_talk") ?></a>
                </div>
            </div>
        </div>
    </div>
</div>
    <script>
        jQuery(document).ready(function ($) {
            let calendar = $('.flatpickr');
            setFlatpickr(calendar, "#secondRangeInput");
        });
    </script>
<?php else:?>

<?php endif;?>
```
