html-filemanager-language.php
1 year ago
html-filemanager-list-operations.php
1 year ago
html-filemanager-settings.php
1 year ago
html-filemanager-user-role-restrictions.php
1 year ago
html-filemanager.php
1 month ago
index.php
5 years ago
html-filemanager-language.php
11 lines
| 1 | <?php |
| 2 | $locales = njt_fs_locales(); |
| 3 | ?> |
| 4 | |
| 5 | <select name="fm_locale" id="fm_locale" class="njt-fs-settting-width-half"> |
| 6 | <?php foreach($locales as $key => $locale) { ?> |
| 7 | <option value="<?php echo $locale;?>" |
| 8 | <?php echo (isset($this->options['njt_fs_file_manager_settings']['fm_locale']) && $this->options['njt_fs_file_manager_settings']['fm_locale'] == $locale) ? 'selected="selected"' : '';?>> |
| 9 | <?php echo esc_html($key);?></option> |
| 10 | <?php } ?> |
| 11 | </select> |