I successfully managed to add a new field to the queue preferences by adding the following block to a XML-File in Kernel/Config/Files.
Code: Select all
<?xml version="1.0" encoding="utf-8"?>
<otrs_config version="1.0" init="Application">
<ConfigItem Name="QueuePreferences###scn_short" Required="1" Valid="1">
<Description Translatable="1">Canonical Name - short version</Description>
<Group>Ticket</Group>
<SubGroup>Frontend::Queue::Preferences</SubGroup>
<Setting>
<Hash>
<Item Key="Module">Kernel::Output::HTML::QueuePreferences::Generic</Item>
<Item Key="Label" Translatable="1">SCN-Short</Item>
<Item Key="Block">Input</Item>
<Item Key="PrefKey">scnshort</Item>
</Hash>
</Setting>
</ConfigItem>
</otrs_config>
Has anyone a hint for me how to archive this?