# boxzilla/3.4.7/src/admin/views/settings.php

Boxzilla – WordPress Popup Builder, version 3.4.7. 61 lines.

- Page: https://pluginprobe.com/plugins/boxzilla/3.4.7/code/src/admin/views/settings.php
- Raw: https://pluginprobe.com/plugins/boxzilla/3.4.7/raw/src/admin/views/settings.php
- Modified: 2026-03-09T08:08:28+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/boxzilla/3.4.7/code/src/admin/views/settings.php#L10-L20`.

```php
<?php defined('ABSPATH') or exit;

/**
 * Settings page
 *
 * @var array $opts
 */
?>
<div class="wrap boxzilla-settings" id="boxzilla-admin">
    <div class="boxzilla-row">
        <div class="boxzilla-col-two-third">

            <h2><?php esc_html_e('Settings', 'boxzilla'); ?></h2>

            <?php do_action('boxzilla_before_settings'); ?>

            <form action="<?php echo admin_url('options.php'); ?>" method="post">

                <?php settings_fields('boxzilla_settings'); ?>

                <table class="form-table">

                    <?php do_action('boxzilla_before_settings_rows'); ?>

                    <tr valign="top">
                        <th><label for="boxzilla_test_mode"><?php esc_html_e('Enable test mode?', 'boxzilla'); ?></label></th>
                        <td>
                            <label><input type="radio" id="boxzilla_test_mode_1" name="boxzilla_settings[test_mode]" value="1" <?php checked($opts['test_mode'], 1); ?> /> <?php esc_html_e('Yes', 'boxzilla'); ?></label> &nbsp;
                            <label><input type="radio" id="boxzilla_test_mode_0" name="boxzilla_settings[test_mode]" value="0" <?php checked($opts['test_mode'], 0); ?> /> <?php esc_html_e('No', 'boxzilla'); ?></label> &nbsp;
                            <p class="help"><?php esc_html_e('If test mode is enabled, all boxes will show up regardless of whether a cookie has been set.', 'boxzilla'); ?></p>
                        </td>
                    </tr>

                    <?php do_action('boxzilla_after_settings_rows'); ?>
                </table>

                <?php submit_button(); ?>
            </form>

            <?php do_action('boxzilla_after_settings'); ?>
        </div>

        <div class="boxzilla-sidebar boxzilla-col-one-third">

            <div class="boxzilla-box">
                <h3><?php esc_html_e('Looking for help?', 'boxzilla'); ?></h3>
                <?php include __DIR__ . '/metaboxes/need-help.php'; ?>
            </div>

            <div class="boxzilla-box">
                <h3><?php esc_html_e('Our other plugins', 'boxzilla'); ?></h3>
                <?php include __DIR__ . '/metaboxes/our-other-plugins.php'; ?>
            </div>

        </div>
    </div>

    <br style="clear: both;" />

</div>

```
