| 1 |
<?php |
| 2 |
/** |
| 3 |
* Check progress. |
| 4 |
* |
| 5 |
* @since 2.7.7 |
| 6 |
* @return void |
| 7 |
*/ |
| 8 |
function usces_item_progress_check(){ |
| 9 |
check_ajax_referer( 'wel_progress_check_ajax', 'nonce' ); |
| 10 |
|
| 11 |
if ( 4 > usces_get_admin_user_level() ) { |
| 12 |
die( 'user_level' ); |
| 13 |
} |
| 14 |
|
| 15 |
$progressfile = wp_unslash( filter_input( INPUT_POST, 'progressfile', FILTER_DEFAULT ) ); |
| 16 |
$progressfile = WP_CONTENT_DIR . USCES_UPLOAD_TEMP . DIRECTORY_SEPARATOR . $progressfile; |
| 17 |
if ( usces_is_reserved_file( $progressfile ) ) { |
| 18 |
$text = file_get_contents( $progressfile ); |
| 19 |
echo( $text ); |
| 20 |
} |
| 21 |
exit; |
| 22 |
} |
| 23 |
|