Ejemplo n.º 1
0
<table class="widefat">

	<thead>

		<tr>

			<th scope="col"><?php 
hmbkp_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()) {
    function get_backupslist_html($schedule)
    {
        ob_start();
        ?>
        
        <table class="widefat">

                    <thead>

                            <tr>

                                    <th scope="col"><?php 
        hmbkp_backups_number($schedule);
        ?>
</th>
                                    <th scope="col"><?php 
        _e('Size', 'mainwp-backupwordpress-extension');
        ?>
</th>
                                    <th scope="col"><?php 
        _e('Type', 'mainwp-backupwordpress-extension');
        ?>
</th>
                                    <th scope="col"><?php 
        _e('Actions', 'mainwp-backupwordpress-extension');
        ?>
</th>

                            </tr>

                    </thead>

                    <tbody>

                            <?php 
        if ($schedule->get_backups()) {
            $schedule->delete_old_backups();
            foreach ($schedule->get_backups() as $file) {
                if (!file_exists($file)) {
                    continue;
                }
                $this->hmbkp_get_backup_row($file, $schedule);
            }
        } else {
            ?>

                                    <tr>
                                            <td class="hmbkp-no-backups" colspan="4"><?php 
            _e('This is where your backups will appear once you have some.', 'mainwp-backupwordpress-extension');
            ?>
</td>
                                    </tr>

                            <?php 
        }
        ?>

                    </tbody>

        </table>
        <?php 
        $html = ob_get_clean();
        return $html;
    }