Skip to content

Commit 9623afa

Browse files
author
mike_p
committed
Create ids for the html so that css styling can be used
1 parent 8a0dc47 commit 9623afa

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

interface/web/help/lib/module.conf.php

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,14 @@
2424
//* Add a menu item with the label 'Send message'
2525
$items[] = array( 'title' => 'Send message',
2626
'target' => 'content',
27-
'link' => 'help/support_message_edit.php');
27+
'link' => 'help/support_message_edit.php',
28+
'html_id' => 'help_message_send');
2829

2930
//* Add a menu item with the label 'View messages'
3031
$items[] = array( 'title' => 'View messages',
3132
'target' => 'content',
32-
'link' => 'help/support_message_list.php');
33+
'link' => 'help/support_message_list.php',
34+
'html_id' => 'help_message_list');
3335

3436

3537
//* Add the menu items defined above to a menu section labeled 'Support'
@@ -42,10 +44,11 @@
4244
//* make sure that the items array is empty
4345
$items = array();
4446

45-
//* Add a menu item with the label 'View messages'
47+
//* Add a menu item with the label 'Version'
4648
$items[] = array( 'title' => 'Version',
4749
'target' => 'content',
48-
'link' => 'help/version.php');
50+
'link' => 'help/version.php',
51+
'html_id' => 'help_version' );
4952

5053

5154
//* Add the menu items defined above to a menu section labeled 'Support'

0 commit comments

Comments
 (0)