mirror of
https://github.com/10h30/ultimatemember.git
synced 2026-07-12 19:26:35 +09:00
68a18b02e9
- small fixes and code optimization;
19 lines
554 B
PHP
19 lines
554 B
PHP
<?php if ( $this->dir_size( 'temp' ) > 0.1 ) { ?>
|
|
|
|
<p>
|
|
<?php printf( __( 'You can free up <span class="red">%s MB</span> by purging your temp upload directory.', 'ultimate-member' ), $this->dir_size( 'temp' ) ); ?>
|
|
</p>
|
|
|
|
<p>
|
|
<a href="<?php echo add_query_arg( 'um_adm_action', 'purge_temp' ); ?>" class="button">
|
|
<?php _e( 'Purge Temp', 'ultimate-member' ); ?>
|
|
</a>
|
|
</p>
|
|
|
|
<?php } else { ?>
|
|
|
|
<p>
|
|
<?php _e( 'Your temp uploads directory is <span class="ok">clean</span>. There is nothing to purge.', 'ultimate-member' ); ?>
|
|
</p>
|
|
|
|
<?php } ?>
|