Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

jsarnowski / jsarnowski/jet-theme-core   php

Repository URL to install this package:

Version: 1.2.1 

/ dashboard / theme / backups-list.php

<?php
/**
 * Backups list
 */
?>
<div class="jet-backups">
	<table>
		<thead>
			<tr>
				<th class="jet-backups-file"><?php
					_e( 'File', 'jet-theme-core' );
				?></th>
				<th class="jet-backups-date"><?php
					_e( 'Created', 'jet-theme-core' );
				?></th>
				<th class="jet-backups-actions"><?php
					_e( 'Actions', 'jet-theme-core' );
				?></th>
			</tr>
		</thead>
		<tbody>
			<?php foreach ( $backups as $backup ) { ?>
			<tr>
				<td class="jet-backups-file"><?php echo $backup['name']; ?></td>
				<td class="jet-backups-date"><?php echo $backup['date']; ?></td>
				<td class="jet-backups-actions"><?php echo $this->get_backup_actions( $backup['name'] ); ?></td>
			</tr>
			<?php } ?>
		</tbody>
	</table>
</div>