You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
391 B
16 lines
391 B
9 years ago
|
##########################################################
|
||
|
|
||
|
=head2 add_routes
|
||
|
|
||
|
page: /thruk/cgi-bin/hello.cgi
|
||
|
|
||
|
=cut
|
||
|
|
||
|
$routes->{'/thruk/cgi-bin/hello.cgi'} = 'Thruk::Controller::hello::index';
|
||
|
|
||
|
# add new menu item
|
||
|
Thruk::Utils::Menu::insert_item('System', {
|
||
|
'href' => '/thruk/cgi-bin/hello.cgi',
|
||
|
'name' => 'Hello World!',
|
||
|
});
|