diff options
author | Simon Rettberg | 2023-03-02 13:47:49 +0100 |
---|---|---|
committer | Simon Rettberg | 2023-03-02 13:47:49 +0100 |
commit | 9db03926a80a910aa9ef338a5ad1d2328e6e6cb7 (patch) | |
tree | edafb8eb40a8703454052b707e2424a907709906 /modules-available/backup/inc/backuprestore.inc.php | |
parent | [inc/Taskmanager] Update phpdoc (diff) | |
download | slx-admin-9db03926a80a910aa9ef338a5ad1d2328e6e6cb7.tar.gz slx-admin-9db03926a80a910aa9ef338a5ad1d2328e6e6cb7.tar.xz slx-admin-9db03926a80a910aa9ef338a5ad1d2328e6e6cb7.zip |
[backup] Add UI for monthly automatic backup + password support
Diffstat (limited to 'modules-available/backup/inc/backuprestore.inc.php')
-rw-r--r-- | modules-available/backup/inc/backuprestore.inc.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/modules-available/backup/inc/backuprestore.inc.php b/modules-available/backup/inc/backuprestore.inc.php new file mode 100644 index 00000000..c34c86a2 --- /dev/null +++ b/modules-available/backup/inc/backuprestore.inc.php @@ -0,0 +1,13 @@ +<?php + +class BackupRestore +{ + + const PROP_LAST_BACKUP = 'backup.last-time'; + const PROP_AUTO_BACKUP_MODE = 'backup.auto-mode'; + const BACKUP_MODE_ROOTHOME = 'ROOTHOME'; + const PROP_AUTO_BACKUP_PASS = 'backup.auto-passwd'; + const BACKUP_MODE_VMSTORE = 'VMSTORE'; + const BACKUP_MODE_OFF = 'OFF'; + +}
\ No newline at end of file |