# wt-security/2.2.3/includes/options.php

WebTotem Security, version 2.2.3. 113 lines.

- Page: https://pluginprobe.com/plugins/wt-security/2.2.3/code/includes/options.php
- Raw: https://pluginprobe.com/plugins/wt-security/2.2.3/raw/includes/options.php
- Modified: 2020-11-27T08:50:22+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.2.3/code/includes/options.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_holder">
            <div class="wtotem_holder__content">
                <div class="section-header-mb">
                    <h2 class="title">
                        <?= wtsec_locale("options") ?>
                    </h2>
                </div>
                <div class="wtotem_option wt_card">
                    <div class="wtotem_option__desc">
                        <h3 class="wtotem_option__title">
                            <?= wtsec_locale("availability") ?>
                        </h3>
                        <p class="wtotem_option__text">
                            <?= wtsec_locale("descriptions.availability") ?>
                        </p>
                    </div>
                    <div class="wtotem_option__checkbox onoff">
                        <input
                                type="checkbox"
                                class="onoff__input config_toggle"
                                id="myonoff1"
                                value="<?= $arguments['wa']['id'] ?>"
                                <?= ($arguments['wa']['isActive']) ? 'checked' : ''; ?>
                        />
                        <label for="myonoff1" class="onoff__label">
                            <div class="onoff__circle"></div>
                        </label>
                    </div>
                </div>

                <div class="wtotem_option wt_card">
                    <div class="wtotem_option__desc">
                        <h3 class="wtotem_option__title">
                            <?= wtsec_locale("malicious_scripts") ?>
                        </h3>
                        <p class="wtotem_option__text">
                            <?= wtsec_locale("descriptions.malicious") ?>
                        </p>
                    </div>
                    <div class="wtotem_option__checkbox onoff">
                        <input
                                type="checkbox"
                                class="onoff__input config_toggle"
                                id="myonoff3"
                                value="<?= $arguments['cms']['id'] ?>"
                                <?= ($arguments['cms']['isActive']) ? 'checked' : ''; ?>
                        />
                        <label for="myonoff3" class="onoff__label">
                            <div class="onoff__circle"></div>
                        </label>
                    </div>
                </div>

                <div class="wtotem_option wt_card">
                    <div class="wtotem_option__desc">
                        <h3 class="wtotem_option__title">
                            <?= wtsec_locale("deface_scanner") ?>
                        </h3>
                        <p class="wtotem_option__text">
                            <?= wtsec_locale("descriptions.deface") ?>
                        </p>
                    </div>
                    <div class="wtotem_option__checkbox onoff">
                        <input
                                type="checkbox"
                                class="onoff__input config_toggle"
                                id="myonoff4"
                                value="<?= $arguments['dc']['id'] ?>"
                                <?= ($arguments['dc']['isActive']) ? 'checked' : ''; ?>
                        />
                        <label for="myonoff4" class="onoff__label">
                            <div class="onoff__circle"></div>
                        </label>
                    </div>
                </div>

                <div class="wtotem_option wt_card">
                    <div class="wtotem_option__desc">
                        <h3 class="wtotem_option__title">
                            <?= wtsec_locale("port_scanner") ?>
                        </h3>
                        <p class="wtotem_option__text">
                            <?= wtsec_locale("descriptions.port") ?>
                        </p>
                    </div>
                    <div class="wtotem_option__checkbox onoff">
                        <input
                                type="checkbox"
                                class="onoff__input config_toggle"
                                id="myonoff5"
                                value="<?= $arguments['ps']['id'] ?>"
                                <?= ($arguments['ps']['isActive']) ? 'checked' : ''; ?>
                        />
                        <label for="myonoff5" class="onoff__label">
                            <div class="onoff__circle"></div>
                        </label>
                    </div>
                </div>

            </div>
        </div>

    </div>
</div>


<?php else:?>

<?php endif;?>
```
