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-list-operations.php
26 lines
| 1 | <?php |
| 2 | $listOperations = array( |
| 3 | 'mkdir'=>'mkdir', |
| 4 | 'mkfile'=>'mkfile', |
| 5 | 'rename'=>'rename', |
| 6 | 'duplicate'=>'duplicate', |
| 7 | 'paste'=>'paste', |
| 8 | 'archive'=>'archive', |
| 9 | 'extract'=>'extract', |
| 10 | 'copy'=>'copy', |
| 11 | 'cut'=>'cut', |
| 12 | 'edit'=>'edit', |
| 13 | 'rm'=>'rm', |
| 14 | 'download'=>'download', |
| 15 | 'upload'=>'upload', |
| 16 | 'search'=>'search' |
| 17 | ) |
| 18 | ?> |
| 19 | |
| 20 | <?php foreach($listOperations as $key => $listOperation) { ?> |
| 21 | <span class="list-col4-item"> |
| 22 | <input type="checkbox" class="fm-list-user-restrictions-item" id="<?php echo esc_attr($key); ?>" name="<?php echo esc_attr($key); ?>" |
| 23 | value="<?php echo esc_attr($key); ?>"> |
| 24 | <label for="<?php echo esc_attr($key); ?>"><?php echo esc_html($listOperation); ?></label> |
| 25 | </span> |
| 26 | <?php } ?> |