PluginProbe ʕ •ᴥ•ʔ
File Manager Pro – Filester / 2.0.1
File Manager Pro – Filester v2.0.1
2.1.1 trunk 1.6.1 1.7.6 1.8 1.8.1 1.8.2 1.8.3 1.8.4 1.8.5 1.8.6 1.8.7 1.8.8 1.8.9 1.9 2.0 2.0.1 2.0.2 2.1.0
filester / views / pages / html-filemanager.php
filester / views / pages Last commit date
html-filemanager-language.php 8 months ago html-filemanager-list-operations.php 8 months ago html-filemanager-settings.php 8 months ago html-filemanager-user-role-restrictions.php 8 months ago html-filemanager.php 8 months ago index.php 8 months ago
html-filemanager.php
34 lines
1 <?php
2 defined('ABSPATH') || exit;
3 $lang = !empty( $this->options['njt_fs_file_manager_settings']['fm_locale']) ? $this->options['njt_fs_file_manager_settings']['fm_locale'] : '';
4 ?>
5 <div class="njt-fs-file-manager">
6 <div class="njt-fs-select-theme">
7 <div class="njt-fs-wrap njt-fs-mr0">
8 <h1 class="wp-heading-inline njt-fs-pd0"><?php _e("Filester - WordPress File Manager Pro", 'filester'); ?></h1>
9 </div>
10 <div class="select-theme-content">
11 <?php
12 $selectedTheme = get_option('njt_fs_selector_themes') && get_option('njt_fs_selector_themes')[$this->userRole]['themesValue'] ? get_option('njt_fs_selector_themes')[$this->userRole]['themesValue'] : null;
13 ?>
14 <div class="njt-fs-wrap njt-fs-mr0">
15 <h3 class="wp-heading-inline select-theme-title"><?php _e("Select theme:", 'filester'); ?></h3>
16 </div>
17 <select name="selector-themes" id="selector-themes">
18 <option value="Default"><?php _e("Default Elfinder", 'filester'); ?></option>
19 <option value="dark-slim"><?php _e("Dark Slim", 'filester'); ?></option>
20 <option value="Material"><?php _e("Material", 'filester'); ?></option>
21 <option value="Material-Gray"><?php _e("Material Gray", 'filester'); ?></option>
22 <option value="Material-Light"><?php _e("Material Light", 'filester'); ?></option>
23 <option value="windows-10"><?php _e("Windows 10", 'filester'); ?></option>
24 </select>
25 <input type="hidden" name="selected-theme" value="<?php echo esc_attr($selectedTheme) ?>">
26
27 </div>
28 </div>
29
30 <div class="clear"></div>
31 <div id="njt-fs-file-manager">
32 </div>
33 </div>
34