HEX
Server: LiteSpeed
System: Linux vps30244.sdns.vn 3.10.0-1160.21.1.el7.x86_64 #1 SMP Tue Mar 16 18:28:22 UTC 2021 x86_64
User: admin (1001)
PHP: 7.4.30
Disabled: show_source, system, shell_exec, passthru, exec, popen, proc_open
Upload Files
File: /home/hcb48/public_html/wp-content/plugins/wpdiscuz/options/tools-layouts/options-export.php
<?php
if (!defined('ABSPATH')) {
    exit();
}
?>
<div>
    <h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('Export options', 'wpdiscuz'); ?></h2>
    <p style="font-size:13px; color:#999999; width:90%; padding-left:0px; margin-left:10px;">
        <?php _e('Using this tool you can migrate or backup/restore wpDiscuz options from one WordPress to another.', 'wpdiscuz'); ?> 
    </p>
    <form action="" method="post" class="wc-tools-settings-form wc-form">
        <?php wp_nonce_field('wc_tools_form'); ?>
        <table class="wp-list-table widefat plugins"  style="margin-top:10px; border:none;">
            <tbody>
                <?php if (file_exists($wpdiscuzOptionsDir . self::OPTIONS_FILENAME . '.txt')) { ?>
                    <tr>
                        <td>                    
                            <div class="wpdiscuz-option-download">
                                <a href="<?php echo $wpdiscuzOptionsUrl . self::OPTIONS_FILENAME . '.txt'; ?>" download="<?php echo self::OPTIONS_FILENAME . '.txt'; ?>" class="button button-secondary">
                                    <?php _e('Download Options', 'wpdiscuz'); ?>
                                </a>
                            </div>
                        </td>
                    </tr>
                <?php } ?>
                <tr>
                    <td style="text-align:right;">
                        <input type="submit" name="wpdiscuz-export-submit" class="button button-primary" value="<?php _e('Backup Options', 'wpdiscuz'); ?>">                        
                        <input type="hidden" name="tools-action" value="export-options" />
                    </td>
                </tr>
            </tbody>
        </table>
    </form>
</div>