Verified Commit 0ebecf51 authored by dockx thibault's avatar dockx thibault
Browse files

:sparkles: feat(extractor): enhance output format selection in extractorTask with...

:sparkles: feat(extractor): enhance output format selection in extractorTask with display values and ACL support
Showing with 4 additions and 2 deletions
+4 -2
......@@ -60,8 +60,10 @@ class extractorTask extends simplePlugin
new SelectAttribute(
_('Format'), _('Output format for extracted data'),
'fdExtractorTaskFormat', TRUE,
['CSV' => _('CSV (Comma Separated Values)')],
'CSV'
['CSV'], // Array of choices/keys
'CSV', // Default value
[_('CSV (Comma Separated Values)')], // Array of display values corresponding to choices
'' // ACL (empty string means use its own)
),
]
],
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment