Hi Kiffin,
I'd recommend you to just take a look at existing configuration options.
In your case, you could create a file called Foo.xml with your
configuration options. This is a nice way to separate them from the
'canned' configuration options.
This file would provide an entry for the AdminFoo module. Just place it
in Kernel/Config/Files, go to Admin > SysConfig in the interface (this
will trigger the file rebuild) and the link will appear in the Admin
section, in this case on the bottom of the third row.
<?xml version="1.0" encoding="iso-8859-1" ?>
<ConfigItem Name="Frontend::Module###AdminFoo" Required="0" Valid="1">
<Description Lang="en">Frontend module registration for the
AdminFoo configuration object in the admin area.</Description>
<Description Lang="de">(German translation, if you feel like it,
otherwise leave the node out.)</Description>
<Group>Foo</Group>
<SubGroup>Frontend::Admin::ModuleRegistration</SubGroup>
<Setting>
<FrontendModuleReg>
<Group>admin</Group>
<Description>Admin</Description>
<Title>Foo</Title>
<NavBarName>Admin</NavBarName>
<NavBarModule>
<Module>Kernel::Output::HTML::NavBarModuleAdmin</Module>
<Name>Foo</Name>
<Block>Block3</Block>
<Prio>4000</Prio>
</NavBarModule>
</FrontendModuleReg>
</Setting>
</ConfigItem>
Hope this helps,
--
Michiel Beijen
R&D
OTRS AG
Norsk-Data-Str 1.
61352 Bad Homburg
Germany
T: +31 (0) 6457 42418
F: +49 (0) 9421 56818-18
I: http://www.otrs.com/
Business location: Bad Homburg, Country Court: Bad Homburg, HRB 10751, VAT ID: DE256610065
Chairman: Burchard Steinbild, Managing Board: André Mindermann
CU@ CeBIT 2010 in Hannover (Germany) and get to know more about OTRS at booth no. C37, in hall 2 from March 2-6, 2010! http://bit.ly/4qLvqm
Kiffin Gish wrote:
I'd like to know the standard procedure for adding new element links
under a given column in the admin area.
In the example of the developers guide you do something similar using
xml but with a button link in the navigation bar instead.
Thanks in advance.