|;
+
+ foreach my $category (@menu) { #FIXME: insert appropriate classnames for styles when they're finished.
+ $menu_html .='
+
'.mt($category->{'categorytitle'}).'
+
';
+ foreach my $item ( @{ $category->{items} } ) {
+ next unless $item->{'permission'};
+ $menu_html .= qq|- ';
+ if($item->{'icon'}){
+ $menu_html .= qq|
';
+ } else { #use linktext as alt text for the icon
+ $menu_html .= qq|$item->{'linktext'}"/>|;
+ }
+ }
+ $menu_html .= qq|';
+ $menu_html .= mt($item->{'linktext'}).'';
+ if (exists($item->{'help'})) {
+ $menu_html .= Apache::loncommon::help_open_topic($item->{'help'});
+ }
+ $menu_html .= ' ';
+ }
+ $menu_html .= '
';
+ }
+ $menu_html .= qq|
|;
+ return $menu_html;
+}
1;