mirror of
https://git.proxmox.com/git/pmg-gui
synced 2025-06-01 18:12:38 +00:00
25 lines
455 B
JavaScript
25 lines
455 B
JavaScript
Ext.define('PMG.VirusDetectorConfiguration', {
|
|
extend: 'Ext.tab.Panel',
|
|
alias: 'widget.pmgVirusDetectorConfiguration',
|
|
|
|
title: gettext('Configuration') + ': ' +
|
|
gettext('Virus Detector'),
|
|
|
|
items: [
|
|
{
|
|
title: gettext('Options'),
|
|
xtype: 'pmgVirusDetectorOptions'
|
|
},
|
|
{
|
|
title: gettext('ClamAV'),
|
|
xtype: 'pmgClamAVDatabase'
|
|
},
|
|
{
|
|
title: gettext('Quarantine'),
|
|
xtype: 'pmgVirusQuarantineOptions'
|
|
}
|
|
]
|
|
});
|
|
|
|
|