Problem with new Skin

Moderator: crythias

Locked
schimmelpfeng
Znuny newbie
Posts: 25
Joined: 10 Nov 2011, 19:02
Znuny Version: 3.3.3
Real Name: Leandro
Company: Quatro Seniors

Problem with new Skin

Post by schimmelpfeng »

Hello all,

I have a problem with a new skin.
I followed the developer manual and create my custom skin.
I can see my skin in Frontend::Agent , but i cant chose it.
What i need to do?

Thanks
OTRS 3.3 + OTRS 3.2 + OTRS 3.1 + OTRS 3.0 + FreeBSD + MySQL
crythias
Moderator
Posts: 10170
Joined: 04 May 2010, 18:38
Znuny Version: 5.0.x
Location: SouthWest Florida, USA
Contact:

Re: Problem with new Skin

Post by crythias »

add Kernel/Config/Files/yourskinname.xml:

Code: Select all

<?xml version="1.0" encoding="utf-8" ?>
<otrs_config version="1.0" init="Framework">
    <ConfigItem Name="Loader::Agent::Skin###007-somename" Required="0" Valid="1">
        <Description Translatable="1">Some description.</Description>
        <Group>Framework</Group>
        <SubGroup>Frontend::Agent</SubGroup>
        <Setting>
            <Hash>
                <Item Key="InternalName">directoryname</Item>
                <Item Key="VisibleName">FancyName</Item>
                <Item Key="Description">You should be using this one</Item>
                <Item Key="HomePage">optional and you can/might ignore this entry</Item>
            </Hash>
        </Setting>
    </ConfigItem>
</otrs_config>
007 is an arbitrary number, but its presence helps order the list.
OTRS 6.0.x (private/testing/public) on Linux with MySQL database.
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
Locked