first commit

This commit is contained in:
2026-05-23 21:02:06 +02:00
commit a64306a939
293 changed files with 32012 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
<?php
namespace admin\view;
class Backups {
public static function backups_list($backups) {
$tpl = new \Tpl;
$tpl -> backups = $backups;
return $tpl -> render ('backups/backup-list');
}
}