File Manager
<?php
namespace HM\BackUpWordPress;
?>
<table class="widefat">
<thead>
<tr>
<th scope="col"><?php backups_number( $schedule ); ?></th>
<th scope="col"><?php _e( 'Size', 'backupwordpress' ); ?></th>
<th scope="col"><?php _e( 'Type', 'backupwordpress' ); ?></th>
<th scope="col"><?php _e( 'Actions', 'backupwordpress' ); ?></th>
</tr>
</thead>
<tbody>
<?php if ( $schedule->get_backups() ) :
$schedule->delete_old_backups();
foreach ( $schedule->get_backups() as $file ) :
if ( ! file_exists( $file ) ) {
continue;
}
get_backup_row( $file, $schedule );
endforeach;
else : ?>
<tr>
<td class="hmbkp-no-backups" colspan="4"><?php _e( 'This is where your backups will appear once you have some.', 'backupwordpress' ); ?></td>
</tr>
<?php endif; ?>
</tbody>
</table>
File Manager Version 1.0, Coded By Lucas
Email: hehe@yahoo.com