C:\xampp\htdocs\landing\wp-content\updraft\plugins-old\wp-file-manager\inc\root.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?php if (!defined('ABSPATH')) { exit; }
$this->custom_css();
if (isset(
$_POST['submit']) && wp_verify_nonce($_POST['wp_filemanager_root_nonce_field'], 'wp_filemanager_root_action')) {
    
$save update_option('wp_file_manager_settings'
        array(
            
'public_path' => isset($_POST['public_path']) ? htmlentities($_POST['public_path']) : '',
            
'fm_enable_trash' => isset($_POST['fm_enable_trash']) ? htmlentities($_POST['fm_enable_trash']) : '',
            
'fm_enable_media_upload' => isset($_POST['fm_enable_media_upload']) ? htmlentities($_POST['fm_enable_media_upload']) : '',
            )
        );
    if (
$save) {
        echo 
'<script>';
        echo 
'window.location.href="?page=wp_file_manager_root&status=1"';
        echo 
'</script>';
    } else {
        echo 
'<script>';
        echo 
'window.location.href="?page=wp_file_manager_root&status=2"';
        echo 
'</script>';
    }
}
$settings get_option('wp_file_manager_settings'); ?>
<div class="wrap fm_rootWrap">
<h3 class="fm_headingTitle"><?php _e('Preferences''wp-file-manager'); ?></h3>
<?php $path str_replace('\\''/'ABSPATH); ?>
<div class="fm_whiteBg">
<form action="" method="post">
<?php wp_nonce_field('wp_filemanager_root_action''wp_filemanager_root_nonce_field'); ?>
<table class="form-table">
<tr>
<th><?php _e('Public Root Path''wp-file-manager'); ?></th>
<td>
<input name="public_path" type="text" id="public_path" value="<?php echo isset($settings['public_path']) && !empty($settings['public_path']) ? $settings['public_path'] : $path?>" class="regular-text">
<p class="description mb15"><?php _e('File Manager Root Path, you can change according to your choice.''wp-file-manager'); ?></p>
<p>Default: <code><?php echo $path?></code></p>
<p style="color:#F00" class="description mb15"><?php _e('Please change this carefully, Wrong path can lead file manager plugin to go down.''file-manager-advanced'); ?></p>
</td>
</tr>
<tr>
<th><?php _e('Enable Trash?''wp-file-manager'); ?></th>
<td>
<input name="fm_enable_trash" type="checkbox" id="fm_enable_trash" value="1" class="regular-text" <?php echo (isset($settings['fm_enable_trash']) && !empty($settings['fm_enable_trash']) && $settings['fm_enable_trash'] == 1) ? 'checked="checked"' ''?>>
<p class="description mb15"><?php _e('After enable trash, your files will go to trash folder.''wp-file-manager'); ?>
</p>
</td>
</tr>
<tr>
<th><?php _e('Enable Files Upload to Media Library?''wp-file-manager'); ?></th>
<td>
<input name="fm_enable_media_upload" type="checkbox" id="fm_enable_media_upload" value="1" class="regular-text" <?php echo (isset($settings['fm_enable_media_upload']) && !empty($settings['fm_enable_media_upload']) && $settings['fm_enable_media_upload'] == 1) ? 'checked="checked"' ''?>>
<p style="color:#F00" class="description mb15"><?php _e('After enabling this all files will go to media library.''wp-file-manager'); ?>
</p>
</td>
</tr>
</table>
<p class="submit"><input type="submit" name="submit" id="submit" class="button button-primary" value="Save Changes"></p>
</form>
</div>
</div>
x

Windows NT KPTV 6.2 build 9200 (Windows Server 2012 Datacenter Edition) i586