HEX
Server: nginx/1.27.1
System: Linux in-4 5.15.0-131-generic #141-Ubuntu SMP Fri Jan 10 21:18:28 UTC 2025 x86_64
User: ilikadirect (1186)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source
Upload Files
File: /storage/v6964/gopalak/public_html/wp-content/plugins/simple-membership/views/admin_settings.php
<?php 
//This file is used to render the settings form for the admin settings page.
//We can also use settings section (with empty heading) inside the tab_1() or tab_2() method to render arbitrary HTML code. 
//Search the code with 'swpm-documentation' to see an example of this.
//However, you can't add your own forms in there since it will be wrapped by the main settings form (so it will be a form inside a form situation).
//You can create links to use GET query arguments.

?>
<!-- This file outputs the settings form fields for a lot of the settings pages -->
<form action="options.php" method="POST">
    <input type="hidden" name="tab" value="<?php echo $current_tab;?>" />
    <?php settings_fields('swpm-settings-tab-' . $current_tab); ?>
    <?php do_settings_sections('simple_wp_membership_settings'); ?>
    <?php submit_button(); ?>
</form>