]> git.proxmox.com Git - pmg-gui.git/blob - js/VirusDetectorConfiguration.js
quarantine: use new controller for virus and attachment quarantines
[pmg-gui.git] / js / VirusDetectorConfiguration.js
1 Ext.define('PMG.VirusDetectorConfiguration', {
2 extend: 'Ext.tab.Panel',
3 alias: 'widget.pmgVirusDetectorConfiguration',
4
5 title: gettext('Configuration') + ': ' +
6 gettext('Virus Detector'),
7
8 border: false,
9 defaults: { border: false },
10
11 items: [
12 {
13 title: gettext('Options'),
14 itemId: 'options',
15 xtype: 'pmgVirusDetectorOptions',
16 },
17 {
18 title: gettext('ClamAV'),
19 itemId: 'clamav',
20 xtype: 'pmgClamAVDatabase',
21 },
22 {
23 title: gettext('Quarantine'),
24 itemId: 'quarantine',
25 xtype: 'pmgVirusQuarantineOptions',
26 },
27 ],
28 });
29
30