New column in "Manage Queue"-view

Moderator: crythias

Locked
JosVanHaag
Znuny newbie
Posts: 5
Joined: 07 Jun 2006, 13:48

New column in "Manage Queue"-view

Post by JosVanHaag »

Hey Guys,

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>
Now I would like to see this field as a column in the queue list in the "Manage Queues" admin section.
Has anyone a hint for me how to archive this?
Locked