mirror of
https://git.proxmox.com/git/pmg-gui
synced 2025-05-28 19:30:21 +00:00
31 lines
587 B
JavaScript
31 lines
587 B
JavaScript
Ext.define('PMG.VirusDetectorConfiguration', {
|
|
extend: 'Ext.tab.Panel',
|
|
alias: 'widget.pmgVirusDetectorConfiguration',
|
|
|
|
title: gettext('Configuration') + ': ' +
|
|
gettext('Virus Detector'),
|
|
|
|
border: false,
|
|
defaults: { border: false },
|
|
|
|
items: [
|
|
{
|
|
title: gettext('Options'),
|
|
itemId: 'options',
|
|
xtype: 'pmgVirusDetectorOptions',
|
|
},
|
|
{
|
|
title: gettext('ClamAV'),
|
|
itemId: 'clamav',
|
|
xtype: 'pmgClamAVDatabase',
|
|
},
|
|
{
|
|
title: gettext('Quarantine'),
|
|
itemId: 'quarantine',
|
|
xtype: 'pmgVirusQuarantineOptions',
|
|
},
|
|
],
|
|
});
|
|
|
|
|