I'm want to add some new user preferences in otrs 3.0.
I'm using this:
I created a file here: Kernel/Config/Files/test.xml
and I added this:
Code: Select all
<ConfigItem Name="CustomerPreferencesGroups###UserExtra" Required="0" Valid="1">
<Description Translatable="1">This is a test</Description>
<Group>Usager</Group>
<SubGroup>Frontend::Customer::Preferences</SubGroup>
<Setting>
<Hash>
<Item Key="Module">Kernel::Output::HTML::PreferencesGeneric</Item>
<Item Key="Column">User Profile</Item>
<Item Key="Label" Translatable="1">Test1</Item>
<Item Key="Key" Translatable="1">Test1</Item>
<Item Key="Data">
<Hash>
<Item Key="yes">yes</Item>
<Item Key="no">non</Item>
</Hash>
</Item>
<Item Key="DataSelected">yes</Item>
<Item Key="PrefKey">user_can_have_tss</Item>
<Item Key="Prio">4000</Item>
<Item Key="Active">1</Item>
</Hash>
</Setting>
</ConfigItem>
How can I change that script in order to use checkboxes, radio and a date fields?
Regards!