';
+ my $Str = "\n".' | ';
+ $Str .= $links.'';
#
if (defined($component)) {
$Str .= '';
@@ -1551,9 +1504,9 @@ END
}
sub row_title {
- my ($title,$css_title_class,$css_value_class) = @_;
$row_count[0]++;
my $css_class = ($row_count[0] % 2)?'LC_odd_row':'LC_even_row';
+ my ($title,$css_title_class,$css_value_class) = @_;
$css_title_class ||= 'LC_pick_box_title';
$css_title_class = 'class="'.$css_title_class.'"';
@@ -1594,16 +1547,12 @@ ENDTWO
sub role_select_row {
my ($roles,$title,$css_class,$show_separate_custom,$cdom,$cnum) = @_;
- my $crstype = 'Course';
- if ($cdom ne '' && $cnum ne '') {
- $crstype = &Apache::loncommon::course_type($cdom.'_'.$cnum);
- }
my $output;
if (defined($title)) {
$output = &row_title($title,$css_class);
}
$output .= qq|
- |
';
}
}
- $output .= ''.$pickspec.' '.$courseform.' selected. '."\n";
+ $output .= ''.&mt('Pick specific course(s):').' '.$courseform.' selected. '."\n";
return $output;
}
@@ -1786,6 +1723,7 @@ sub email_default_row {
sub submit_row {
my ($title,$cmd,$submit_text,$css_class) = @_;
+ $submit_text = &mt($submit_text);
my $output = &row_title($title,$css_class,'LC_pick_box_submit');
$output .= qq|
@@ -1827,7 +1765,8 @@ sub topic_bar {
return '
!['.&mt('Step [_1]',$imgnum).
- '](/res/adm/pages/bl_step'.$imgnum.'.gif) '.$title.'
+ '"src="/res/adm/pages/bl_step'.$imgnum.'.gif" />
+ '.$title.'
';
}
@@ -1964,7 +1903,7 @@ sub set_form_elements {
$values{$name}[$i] =~ s/([\r\n\f]+)/\\n/g;
$values{$name}[$i] =~ s/"/\\"/g;
}
- if (($$elements{$name} eq 'text') || ($$elements{$name} eq 'hidden')) {
+ if ($$elements{$name} eq 'text') {
my $numvalues = @{$values{$name}};
if ($numvalues > 1) {
my $valuestring = join('","',@{$values{$name}});
@@ -1999,8 +1938,6 @@ sub set_form_elements {
$output .= qq|
if (courseForm.elements['$name'].value == "$value") {
courseForm.elements['$name'].checked = true;
- } else {
- courseForm.elements['$name'].checked = false;
}|;
}
}
@@ -2042,7 +1979,6 @@ sub set_form_elements {
}
}
$output .= "
- return;
}\n";
return $output;
}
@@ -2084,6 +2020,74 @@ END
return $scripttag;
}
+##############################################
+##############################################
+
+# generate_menu
+#
+# Generates html markup for a menu.
+#
+# Inputs:
+# An array of following structure:
+# ({ categorytitle => 'Categorytitle',
+# items => [
+# { linktext => 'Text to be displayed',
+# url => 'URL the link is pointing to, i.e. /adm/site?action=dosomething',
+# permission => 'Contains permissions as returned from lonnet::allowed(),
+# must evaluate to true in order to activate the link',
+# icon => 'icon filename',
+# alttext => 'alt text for the icon',
+# help => 'Name of the corresponding helpfile',
+# linktitle => 'Description of the link (used for title tag)'
+# },
+# ...
+# ]
+# },
+# ...
+# )
+#
+# Outputs: A scalar containing the html markup for the menu.
+
+# ---- Remove when done ----
+# This routine is part of the redesign of LON-CAPA and it's
+# subject to change during this project.
+# Don't rely on its current functionality as it might be
+# changed or removed.
+# TODO:
+# check for empty values
+# --------------------------
+
+sub generate_menu {
+ my @menu = @_;
+ my $menu_html = qq||;
+
+ 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|';
+ }
+ $menu_html .= ' ';
+ }
+ $menu_html .= qq| |;
+ return $menu_html;
+}
1;
|