Skip to content

Commit

Permalink
Feat[Backup Server Ui]: added Hintaction
Browse files Browse the repository at this point in the history
  • Loading branch information
Kim-the-Diamond committed Jun 7, 2024
1 parent c13eee5 commit cedacfa
Show file tree
Hide file tree
Showing 3 changed files with 352 additions and 8 deletions.
93 changes: 93 additions & 0 deletions config/backup-server-ui.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
<?php

return [
'backup_source' => [
'inline_help' => [
'fields' => [
'name' =>
[
'title' => '',
'url' => '',
],
'host' => [
'title' => '',
'url' => '',
],
'ssh_user' => [
'title' => '',
'url' => '',
],
'ssh_port' => [
'title' => '',
'url' => '',
],
'ssh_private_key_file' => [
'title' => '',
'url' => '',
],
'cron_expression' => [
'title' => '',
'url' => '',
],
'destination_id' => [
'title' => '',
'url' => '',
],
'pre_backup_commands' => [
'title' => '',
'url' => 'https://github.com/mooxphp/backup-server-ui/#pre_backup_commands',
],
'post_backup_commands' => [
'title' => '',
'url' => 'https://moox.org/docs/backup-server-ui/#post_backup_commands',
],
'includes' => [
'title' => '',
'url' => 'includes',
],
'excludes' => [
'title' => '',
'url' => '',
],
'cleanup_strategy_class' => [
'title' => '',
'url' => '',
],
'keep_all_backups_for_days' => [
'title' => '',
'url' => '',
],
'keep_daily_backups_for_days' => [
'title' => '',
'url' => '',
],
'keep_weekly_backups_for_weeks' => [
'title' => '',
'url' => '',
],
'keep_monthly_backups_for_months' => [
'title' => '',
'url' => '',
],
'keep_yearly_backups_for_years' => [
'title' => '',
'url' => '',
],
'delete_oldest_backups_when_using_more_megabytes_than' => [
'title' => '',
'url' => '',
],
'healthy_maximum_backup_age_in_days' => [
'title' => '',
'url' => 'url',
],
'healthy_maximum_storage_in_mb' => [
'title' => '',
'url' => '',
],
],
'icon' => 'heroicon-c-question-mark-circle',
],
],

];
88 changes: 88 additions & 0 deletions packages/backup-server-ui/config/backup-server-ui.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,93 @@
<?php

return [
'backup_source' => [
'inline_help' => [
'fields' => [
'name' =>
[
'title' => '',
'url' => '',
],
'host' => [
'title' => '',
'url' => '',
],
'ssh_user' => [
'title' => '',
'url' => '',
],
'ssh_port' => [
'title' => '',
'url' => '',
],
'ssh_private_key_file' => [
'title' => '',
'url' => '',
],
'cron_expression' => [
'title' => '',
'url' => '',
],
'destination_id' => [
'title' => '',
'url' => '',
],
'pre_backup_commands' => [
'title' => '',
'url' => 'https://github.com/mooxphp/backup-server-ui/#pre_backup_commands',
],
'post_backup_commands' => [
'title' => '',
'url' => 'https://moox.org/docs/backup-server-ui/#post_backup_commands',
],
'includes' => [
'title' => '',
'url' => 'includes',
],
'excludes' => [
'title' => '',
'url' => '',
],
'cleanup_strategy_class' => [
'title' => '',
'url' => '',
],
'keep_all_backups_for_days' => [
'title' => '',
'url' => '',
],
'keep_daily_backups_for_days' => [
'title' => '',
'url' => '',
],
'keep_weekly_backups_for_weeks' => [
'title' => '',
'url' => '',
],
'keep_monthly_backups_for_months' => [
'title' => '',
'url' => '',
],
'keep_yearly_backups_for_years' => [
'title' => '',
'url' => '',
],
'delete_oldest_backups_when_using_more_megabytes_than' => [
'title' => '',
'url' => '',
],
'healthy_maximum_backup_age_in_days' => [
'title' => '',
'url' => 'url',
],
'healthy_maximum_storage_in_mb' => [
'title' => '',
'url' => '',
],
],
'icon' => 'heroicon-c-question-mark-circle',
],
],

];
Loading

0 comments on commit cedacfa

Please sign in to comment.