mirror of
https://github.com/danpros/htmly.git
synced 2026-04-17 19:26:08 +05:30
15 lines
No EOL
296 B
PHP
15 lines
No EOL
296 B
PHP
<?php
|
|
if (login()) {
|
|
if (isset($_GET['file'])) {
|
|
$file = $_GET['file'];
|
|
|
|
if (!empty($file)) {
|
|
unlink($file);
|
|
}
|
|
|
|
}
|
|
}
|
|
?>
|
|
<a href="<?php echo site_url() ?>admin/backup-start">Create backup</a>
|
|
<h2>Your backups</h2>
|
|
<?php echo get_backup_files() ?>
|