]> git.proxmox.com Git - pmg-gui.git/blobdiff - js/SystemConfiguration.js
BackupRestore.js - add timestamp column
[pmg-gui.git] / js / SystemConfiguration.js
index 741d54b9db75b021852ebc6df6dd1c610bdae53d..8e51127b2ef993c229bbaf6cbd2672344b889408 100644 (file)
@@ -1,42 +1,4 @@
 /*global Proxmox*/
-Ext.define('PMG.RestoreSystemConfiguration', {
-    extend: 'Ext.Panel',
-    xtype: 'pmgRestoreSystemConfiguration',
-
-    title: gettext('Restore'),
-
-    controller: {
-       xclass: 'Ext.app.ViewController',
-
-       onFactoryDefaults: function() {
-           var me = this.getView();
-
-           Ext.Msg.confirm(
-               gettext('Confirm'),
-               gettext('Reset rule database to factory defaults?'),
-               function(button) {
-                   if (button !== 'yes') return;
-                   var url = '/config/ruledb';
-                   Proxmox.Utils.API2Request({
-                       url: '/config/ruledb',
-                       method: 'POST',
-                       waitMsgTarget: me,
-                       failure: function (response, opts) {
-                           Ext.Msg.alert(gettext('Error'), response.htmlStatus);
-                       }
-                   });
-               }
-           );
-       }
-    },
-
-    tbar: [
-       {
-           text: gettext('Factory Defaults'),
-           handler: 'onFactoryDefaults'
-       }
-    ]
-});
 
 Ext.define('PMG.SystemConfiguration', {
     extend: 'Ext.tab.Panel',
@@ -82,19 +44,14 @@ Ext.define('PMG.SystemConfiguration', {
                }
            ]
        },
-       {
-           itemId: 'backup',
-            title: gettext('Backup'),
-           html: "Backup"
-       },
-       {
-           itemId: 'restore',
-           xtype: 'pmgRestoreSystemConfiguration'
-       },
        {
            itemId: 'options',
             title: gettext('Options'),
            xtype: 'pmgSystemOptions'
+       },
+       {
+           itemId: 'backup',
+           xtype: 'pmgBackupRestore'
        }
     ]
 });